mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-08 05:24:39 +01:00
35 lines
1.2 KiB
XML
35 lines
1.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"
|
||
|
>
|
||
|
|
||
|
<TextView android:id="@+id/invite_desc"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||
|
/>
|
||
|
|
||
|
<EditText android:id="@+id/phone_edit"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_marginLeft="20dip"
|
||
|
android:layout_marginRight="20dip"
|
||
|
android:scrollHorizontally="true"
|
||
|
android:phoneNumber="true"
|
||
|
android:singleLine="true"
|
||
|
android:maxLength="15"
|
||
|
android:selectAllOnFocus="true"
|
||
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||
|
/>
|
||
|
|
||
|
<Button android:id="@+id/button_invite"
|
||
|
android:text="@string/button_invite"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
/>
|
||
|
|
||
|
</LinearLayout>
|