mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
2.2 KiB
XML
58 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
style="@style/Content">
|
|
|
|
<!-- At runtime, we'll load the Locale background frame -->
|
|
<LinearLayout
|
|
android:id="@+id/frame"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1">
|
|
|
|
<TextView
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingBottom="10px"
|
|
android:gravity="center"
|
|
android:text="@string/locale_edit_intro"
|
|
style="@style/TextAppearance" />
|
|
|
|
<FrameLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="100"
|
|
android:layout_margin="10px"
|
|
android:background="@drawable/locale_border">
|
|
|
|
<ListView android:id="@android:id/list"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:scrollbars="vertical"
|
|
android:background="@android:color/black"
|
|
android:cacheColorHint="@android:color/black"/>
|
|
|
|
</FrameLayout>
|
|
|
|
<TextView
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:text="@string/locale_interval_label"
|
|
style="@style/TextAppearance" />
|
|
|
|
<Spinner android:id="@+id/intervalSpinner"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:paddingBottom="10dip"
|
|
android:entries="@array/locale_interval" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |