blob: fc657186d1175ab0b258aef8c1853a751c34cef6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<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"
android:textColor="?android:textColorPrimary"/>
</FrameLayout>
|