OLD | NEW |
(Empty) | |
| 1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 android:orientation="vertical" |
| 3 android:layout_width="wrap_content" |
| 4 android:layout_height="wrap_content"> |
| 5 |
| 6 <TextView |
| 7 android:id="@+id/urlView" |
| 8 android:layout_width="wrap_content" |
| 9 android:layout_height="wrap_content" |
| 10 android:layout_marginTop="6dp" |
| 11 android:layout_marginStart="4dp" |
| 12 android:textSize="16sp" |
| 13 android:text="@string/urlText" /> |
| 14 |
| 15 <EditText |
| 16 android:id="@+id/urlText" |
| 17 android:layout_width="match_parent" |
| 18 android:layout_height="wrap_content" |
| 19 android:inputType="textUri" /> |
| 20 |
| 21 <TextView |
| 22 android:id="@+id/postView" |
| 23 android:layout_width="wrap_content" |
| 24 android:layout_height="wrap_content" |
| 25 android:layout_marginTop="26dp" |
| 26 android:layout_marginStart="4dp" |
| 27 android:textSize="16sp" |
| 28 android:text="@string/postText" /> |
| 29 |
| 30 <EditText |
| 31 android:id="@+id/postText" |
| 32 android:layout_width="match_parent" |
| 33 android:layout_height="wrap_content" |
| 34 android:inputType="text" /> |
| 35 |
| 36 </LinearLayout> |
OLD | NEW |