Statistics
| Branch: | Revision:

root / res / layout / createaccount.xml @ fea03400

History | View | Annotate | Download (2.1 kB)

1
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
        android:layout_width="fill_parent" android:layout_height="fill_parent"
4
        android:orientation="vertical">
5
        <TextView android:layout_height="wrap_content" android:text="Provider"
6
                android:layout_marginLeft="22dip" android:layout_width="fill_parent"></TextView>
7
        <Spinner android:layout_height="wrap_content"
8
                android:layout_marginLeft="22dip" android:layout_marginRight="30dip"
9
                android:layout_width="fill_parent" android:id="@+id/provider_spinner"></Spinner>
10
        <TextView android:layout_height="wrap_content" android:text="Username"
11
                android:layout_marginLeft="22dip" android:layout_width="fill_parent"></TextView>
12
        <EditText android:layout_width="fill_parent"
13
                android:layout_height="wrap_content" android:layout_marginLeft="22dip"
14
                android:layout_marginRight="30dip" android:id="@+id/username" android:singleLine="true"></EditText>
15
        <TextView android:layout_height="wrap_content" android:text="API Key"
16
                android:layout_marginLeft="22dip" android:layout_width="fill_parent"></TextView>
17
        <EditText android:layout_height="wrap_content" android:layout_width="fill_parent"
18
                android:layout_marginLeft="22dip" android:layout_marginRight="30dip"
19
                android:scrollHorizontally="true" android:autoText="false"
20
                android:capitalize="none" android:gravity="fill_horizontal"
21
                android:singleLine="true" android:imeOptions="actionGo"
22
                android:inputType="textNoSuggestions" android:password="true"
23
                android:textAppearance="?android:attr/textAppearanceMedium" android:id="@+id/addaccount_apikey"/>
24
        <LinearLayout android:layout_height="wrap_content"
25
                android:layout_width="fill_parent" android:layout_marginTop="10dip">
26
                <Button android:layout_marginLeft="22dip"
27
                        android:layout_height="wrap_content" android:text="Save"
28
                        android:id="@+id/submit_new_account" android:layout_width="100dip"></Button>
29
                <CheckBox android:layout_width="wrap_content"
30
                        android:layout_height="wrap_content" android:id="@+id/show_clear"
31
                        android:text="Show API Key"></CheckBox>
32
        </LinearLayout>
33
</LinearLayout>