uopspop

Untitled

Sep 27th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.58 KB | None | 0 0
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2.    xmlns:tools="http://schemas.android.com/tools"
  3.    android:layout_width="match_parent"
  4.    android:layout_height="match_parent"
  5.    android:paddingLeft="@dimen/activity_horizontal_margin"
  6.    android:paddingRight="@dimen/activity_horizontal_margin"
  7.    android:paddingTop="@dimen/activity_vertical_margin"
  8.    android:paddingBottom="@dimen/activity_vertical_margin"
  9.    tools:context="idv.ron.activitiesdemo.ResultActivity">
  10.  
  11.     <TextView
  12.        android:layout_width="wrap_content"
  13.        android:layout_height="wrap_content"
  14.        android:text="@string/text_tvResultTitle"
  15.        android:id="@+id/tvResultTitle"
  16.        android:layout_alignParentTop="true"
  17.        android:layout_centerHorizontal="true"
  18.        android:textSize="20sp" />
  19.  
  20.     <TextView
  21.        android:layout_width="match_parent"
  22.        android:layout_height="wrap_content"
  23.        android:id="@+id/tvResult"
  24.        android:textSize="16sp"
  25.        android:layout_marginTop="12dp"
  26.        android:lines="5"
  27.        android:layout_below="@+id/tvResultTitle"
  28.        android:layout_alignParentLeft="true"
  29.        android:layout_alignParentStart="true" />
  30.  
  31.     <Button
  32.        android:layout_width="match_parent"
  33.        android:layout_height="wrap_content"
  34.        android:text="@string/text_btBack"
  35.        android:id="@+id/btBack"
  36.        android:onClick="onBackClick"
  37.        android:layout_below="@+id/tvResult"
  38.        android:layout_alignParentRight="true"
  39.        android:layout_alignParentEnd="true" />
  40. </RelativeLayout>
Add Comment
Please, Sign In to add comment