aprsdroid/res/layout/firstrunview.xml

55 wiersze
1.6 KiB
XML
Czysty Zwykły widok Historia

2011-04-10 18:07:17 +00:00
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="fill_parent" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10sp"
android:layout_marginTop="5sp"
android:layout_marginBottom="5sp"
android:layout_marginRight="10sp"
android:autoLink="web"
android:text="@string/fr_text"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10sp"
android:layout_marginTop="5sp"
android:layout_marginBottom="5sp"
android:layout_marginRight="10sp"
android:autoLink="web"
android:text="@string/fr_text2"
/>
<EditText
android:id="@+id/callsign"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10sp"
android:layout_marginTop="5sp"
android:layout_marginBottom="5sp"
android:layout_marginRight="10sp"
android:singleLine="true"
android:inputType="textCapCharacters"
2011-05-14 18:51:30 +00:00
android:hint="@string/p_callsign"
2011-04-10 18:07:17 +00:00
/>
<EditText
android:id="@+id/passcode"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10sp"
android:layout_marginTop="5sp"
android:layout_marginBottom="5sp"
android:layout_marginRight="10sp"
android:singleLine="true"
android:inputType="number"
android:hint="@string/p_passcode"
/>
</LinearLayout>
</ScrollView>