mirror of
https://github.com/fergalmoran/chrometophone.git
synced 2026-02-12 11:04:12 +00:00
54 lines
1.4 KiB
XML
54 lines
1.4 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"
|
|
>
|
|
|
|
<TextView
|
|
style="?android:attr/listSeparatorTextViewStyle"
|
|
android:text="@string/accounts"
|
|
android:layout_marginTop="5dip" />
|
|
|
|
<Spinner
|
|
android:id="@+id/accounts"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
/>
|
|
|
|
<TextView
|
|
style="?android:attr/listSeparatorTextViewStyle"
|
|
android:text="@string/setup"
|
|
android:layout_marginTop="5dip" />
|
|
|
|
<Button android:id="@+id/register"
|
|
style="?android:attr/buttonStyleSmall"
|
|
android:text="@string/register"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/status"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="5px"
|
|
android:textColor="#FFFFFF"
|
|
/>
|
|
|
|
<TextView
|
|
style="?android:attr/listSeparatorTextViewStyle"
|
|
android:text="@string/action"
|
|
android:layout_marginTop="5dip" />
|
|
|
|
<CheckBox
|
|
android:text="@string/launch_check_box"
|
|
android:id="@+id/launch_check_box"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:checked="false"
|
|
android:textSize="22px"
|
|
/>
|
|
|
|
</LinearLayout>
|