Files
KnowMySize/res/layout/activity_friend_adder.xml
Julien Lengrand-Lambert c071e15791 Youhou! User can now add new friends !
When done, a new element is created in the friends list.

User can now add and remove friends.

Next step :
- Get real people. Write characters in xml files
2012-10-03 18:28:23 +02:00

28 lines
963 B
XML

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingLeft="6dip"
android:paddingRight="6dip"
android:paddingBottom="3dip">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/friend_name"/>
<EditText android:id="@+id/friend_name"
android:maxLines="1"
android:layout_marginTop="2dip"
android:layout_width="wrap_content"
android:ems="25"
android:layout_height="wrap_content"
android:scrollHorizontally="true" />
<Button android:id="@+id/add_ok_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:text="@string/ok" />
</LinearLayout>