OLD | NEW |
(Empty) | |
| 1 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_p
arent" |
| 3 android:layout_height="match_parent" android:paddingStart="@dimen/activity_h
orizontal_margin" |
| 4 android:paddingEnd="@dimen/activity_horizontal_margin" |
| 5 android:paddingTop="@dimen/activity_vertical_margin" |
| 6 android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".Cron
etSampleActivity"> |
| 7 |
| 8 <TextView |
| 9 android:id="@+id/resultView" |
| 10 android:layout_width="wrap_content" |
| 11 android:layout_height="wrap_content" |
| 12 android:layout_centerHorizontal="true" /> |
| 13 |
| 14 <TextView |
| 15 android:id="@+id/dataView" |
| 16 android:layout_width="wrap_content" |
| 17 android:layout_height="wrap_content" |
| 18 android:layout_marginTop="26dp" |
| 19 android:layout_below="@id/resultView" /> |
| 20 |
| 21 </RelativeLayout> |
OLD | NEW |