/walkytalky/res/layout/locationbookmarker.xml
XML | 32 lines | 29 code | 3 blank | 0 comment | 0 complexity | 5692537af2759f8e21feeded4b4beb43 MD5 | raw file
1<?xml version="1.0" encoding="utf-8"?> 2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:orientation="vertical" 4 android:layout_width="fill_parent" 5 android:layout_height="fill_parent" 6 > 7 8<TextView 9 android:layout_width="fill_parent" 10 android:layout_height="wrap_content" 11 android:text=" " 12 /> 13<Button 14 android:id="@+id/saveLocation_Button" 15 android:layout_width="wrap_content" 16 android:layout_height="wrap_content" 17 android:text="Save current location" 18 /> 19<TextView 20 android:layout_width="fill_parent" 21 android:layout_height="wrap_content" 22 android:text=" " 23 /> 24 25<EditText 26 android:id="@+id/location_EditText" 27 android:layout_width="fill_parent" 28 android:layout_height="fill_parent" 29 android:layout_weight="1" 30 /> 31 32</LinearLayout>