blob: 5133b7533b6fb920846022ef6775f5dbc42dccb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<CheckBox
android:id="@+id/sync_default"
style="?android:attr/textAppearanceMedium"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:checked="false"
android:text="@string/offline.sync_dialog_default"/>
</FrameLayout>
|