mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
6fdd883ff0
--HG-- extra : rebase_source : 4ae6190cb5db1b0778161b332ea71d15148e5c1c
33 lines
988 B
XML
33 lines
988 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
style="@style/SyncLayout.Vertical" >
|
|
<LinearLayout
|
|
android:id="@+id/sendtab_top"
|
|
style="@style/SyncTop" >
|
|
<ImageView
|
|
style="@style/SyncTopIcon" />
|
|
<TextView
|
|
style="@style/SyncTextTitle"
|
|
android:text="@string/sync_title_send_tab" />
|
|
</LinearLayout>
|
|
|
|
<ListView
|
|
android:id="@+id/device_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/sendtab_top"
|
|
android:layout_above="@+id/sendtab_bottom" >
|
|
</ListView>
|
|
|
|
<LinearLayout
|
|
android:id="@id/sendtab_bottom"
|
|
style="@style/SyncBottom" >
|
|
<Button
|
|
style="@style/SyncButton"
|
|
android:id="@+id/send_button"
|
|
android:onClick="sendClickHandler"
|
|
android:clickable="false"
|
|
android:enabled="false"
|
|
android:text="@string/sync_button_send" />
|
|
</LinearLayout>
|
|
</RelativeLayout> |