kopia lustrzana https://github.com/ge0rg/aprsdroid
55 wiersze
1.7 KiB
XML
55 wiersze
1.7 KiB
XML
|
<?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"
|
||
|
android:hint="@string/p_callsign_nossid"
|
||
|
/>
|
||
|
<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>
|