mirror of
https://github.com/jlengrand/KnowMySize.git
synced 2026-03-10 08:31:18 +00:00
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
28 lines
963 B
XML
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> |