ipdan4ik

[lb7] activity_item.xml

Apr 16th, 2021 (edited)
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.51 KB | None | 0 0
  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="match_parent"
  5.    android:layout_height="match_parent">
  6.     <TextView
  7.        android:layout_width="match_parent"
  8.        android:layout_height="wrap_content"
  9.        android:text="@string/item_title"/>
  10.     <EditText
  11.        android:id="@+id/title"
  12.        android:layout_width="match_parent"
  13.        android:layout_height="wrap_content"
  14.        android:inputType="textCapSentences"/>
  15.     <TextView
  16.        android:layout_width="match_parent"
  17.        android:layout_height="wrap_content"
  18.        android:text="@string/item_latitude"/>
  19.     <EditText
  20.        android:id="@+id/latitude"
  21.        android:layout_width="match_parent"
  22.        android:layout_height="wrap_content"
  23.        android:inputType="textCapCharacters"/>
  24.     <TextView
  25.        android:layout_width="match_parent"
  26.        android:layout_height="wrap_content"
  27.        android:text="@string/item_longitude"/>
  28.     <EditText
  29.        android:id="@+id/longitude"
  30.        android:layout_width="match_parent"
  31.        android:layout_height="wrap_content"
  32.        android:inputType="textCapCharacters"/>
  33.     <TextView
  34.        android:layout_width="wrap_content"
  35.        android:layout_height="wrap_content"
  36.        android:text="@string/my_name"
  37.        android:layout_gravity="center"
  38.        android:textSize="12sp"
  39.        android:layout_marginBottom="10dp"/>
  40. </LinearLayout>
Add Comment
Please, Sign In to add comment