oim_trust

activity_main_sharedPreferences

Dec 30th, 2015
1,131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.86 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:tools="http://schemas.android.com/tools"
  4.    android:layout_width="match_parent"
  5.    android:layout_height="match_parent"
  6.    android:paddingBottom="@dimen/activity_vertical_margin"
  7.    android:paddingLeft="@dimen/activity_horizontal_margin"
  8.    android:paddingRight="@dimen/activity_horizontal_margin"
  9.    android:paddingTop="@dimen/activity_vertical_margin"
  10.    tools:context="com.rohim.otrust.appsharedpref.MainActivity">
  11.  
  12.  
  13.     <EditText
  14.        android:layout_width="match_parent"
  15.        android:layout_height="wrap_content"
  16.        android:id="@+id/et_name"
  17.        android:layout_marginTop="67dp"
  18.        android:hint="@string/name_text"
  19.        />
  20.  
  21.     <EditText
  22.        android:layout_width="match_parent"
  23.        android:layout_height="wrap_content"
  24.        android:id="@+id/et_phonet"
  25.        android:layout_below="@+id/et_name"
  26.        android:hint="@string/phone_text" />
  27.  
  28.     <EditText
  29.        android:layout_width="match_parent"
  30.        android:layout_height="wrap_content"
  31.        android:id="@+id/et_emailt"
  32.        android:layout_below="@+id/et_phonet"
  33.        android:hint="@string/email_text" />
  34.  
  35.     <Button
  36.        android:layout_width="match_parent"
  37.        android:layout_height="wrap_content"
  38.        android:text="@string/save_text"
  39.        android:id="@+id/btn_save"
  40.        android:layout_below="@+id/et_emailt"
  41.        android:layout_centerHorizontal="true"
  42.        android:layout_marginTop="50dp" />
  43.  
  44.     <TextView
  45.        android:layout_width="match_parent"
  46.        android:layout_height="wrap_content"
  47.        android:text="@string/name_text"
  48.        android:id="@+id/tv_output"
  49.        android:layout_below="@+id/btn_save"
  50.        android:layout_centerHorizontal="true" />
  51.  
  52.  
  53. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment