mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
eb95bfe921
--HG-- extra : rebase_source : cd915e11fb496918670b706a3ae2357d68ced7da
51 lines
1.9 KiB
XML
51 lines
1.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<View android:layout_width="10dp"
|
|
android:layout_height="fill_parent"
|
|
android:layout_gravity="center_vertical"/>
|
|
|
|
<ImageView android:id="@+id/icon"
|
|
android:layout_width="27dp"
|
|
android:layout_height="21dp"
|
|
android:paddingRight="6dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:visibility="gone"/>
|
|
|
|
<TextView android:id="@+id/title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1.0"
|
|
android:textSize="16sp"
|
|
android:textColor="@color/menu_item_title"
|
|
android:singleLine="true"
|
|
android:ellipsize="middle"
|
|
android:layout_gravity="center_vertical"/>
|
|
|
|
<FrameLayout android:layout_width="18dp"
|
|
android:layout_height="18dp"
|
|
android:layout_marginBottom="2dp"
|
|
android:layout_gravity="center_vertical">
|
|
|
|
<CheckBox android:id="@+id/check"
|
|
android:layout_width="18dp"
|
|
android:layout_height="18dp"
|
|
android:button="@drawable/menu_item_checkmark"
|
|
android:focusable="false"
|
|
android:clickable="false"
|
|
android:visibility="gone"/>
|
|
|
|
<ImageView android:id="@+id/more"
|
|
android:layout_width="18dp"
|
|
android:layout_height="18dp"
|
|
android:src="@drawable/menu_item_more"
|
|
android:visibility="gone"/>
|
|
|
|
</FrameLayout>
|
|
|
|
<View android:layout_width="10dp"
|
|
android:layout_height="fill_parent"
|
|
android:layout_gravity="center_vertical"/>
|
|
|
|
</merge>
|