mobile/android/base/resources/layout/sync_send_tab.xml

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 <?xml version="1.0" encoding="utf-8"?>
     2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
     3    - License, v. 2.0. If a copy of the MPL was not distributed with this
     4    - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
     6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     7   style="@style/SyncContainer" >
     9   <TextView
    10       style="@style/SyncTop"
    11       android:text="@string/sync_title_send_tab" />
    13   <LinearLayout
    14     android:layout_width="fill_parent"
    15     android:layout_height="wrap_content"
    16     android:orientation="vertical"
    17     android:padding="@dimen/SyncSpace" >
    19     <TextView
    20       android:id="@+id/title"
    21       android:layout_width="fill_parent"
    22       android:layout_height="wrap_content"
    23       android:textAppearance="?android:attr/textAppearanceMedium"
    24       android:text="@string/sync_title_send_tab" />
    25     <TextView
    26       android:id="@+id/uri"
    27       android:layout_width="fill_parent"
    28       android:layout_height="wrap_content"
    29       android:textAppearance="?android:attr/textAppearanceSmall"
    30       android:text="@string/sync_title_send_tab" />
    31   </LinearLayout>
    33   <ListView
    34     android:id="@+id/device_list"
    35     style="@style/SyncMiddle"
    36     android:padding="0dp" >
    37   </ListView>
    39   <LinearLayout
    40     style="@style/SyncBottomContainer" >
    42     <LinearLayout
    43       style="@style/SyncBottom" >
    45       <Button
    46         style="@style/SyncButton"
    47         android:id="@+id/send_button"
    48         android:onClick="sendClickHandler"
    49         android:clickable="false"
    50         android:enabled="false"
    51         android:text="@string/sync_button_send" />
    52     </LinearLayout>
    54   </LinearLayout>
    55 </LinearLayout>

mercurial