uopspop

Untitled

Sep 27th, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.42 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout 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:orientation="vertical"
  7.    android:paddingBottom="@dimen/activity_vertical_margin"
  8.    android:paddingLeft="@dimen/activity_horizontal_margin"
  9.    android:paddingRight="@dimen/activity_horizontal_margin"
  10.    android:paddingTop="@dimen/activity_vertical_margin"
  11.    tools:context="com.example.sam.myfragmentprac.MainActivity">
  12.  
  13.     <Button
  14.        android:id="@+id/btAdd"
  15.        android:layout_width="match_parent"
  16.        android:layout_height="wrap_content"
  17.        android:layout_gravity="center"
  18.        android:onClick="onAddClick"
  19.        android:text="@string/text_btAdd" />
  20.  
  21.     <Button
  22.        android:id="@+id/btReplace"
  23.        android:layout_width="match_parent"
  24.        android:layout_height="wrap_content"
  25.        android:layout_gravity="center"
  26.        android:onClick="onReplaceClick"
  27.        android:text="@string/text_btReplace" />
  28.  
  29.     <Button
  30.        android:id="@+id/btAttach"
  31.        android:layout_width="match_parent"
  32.        android:layout_height="wrap_content"
  33.        android:layout_gravity="center"
  34.        android:onClick="onAttachClick"
  35.        android:text="@string/text_btAttach" />
  36.  
  37.     <Button
  38.        android:id="@+id/btDettach"
  39.        android:layout_width="match_parent"
  40.        android:layout_height="wrap_content"
  41.        android:layout_gravity="center"
  42.        android:onClick="onDettachClick"
  43.        android:text="@string/text_btDettach" />
  44.  
  45.     <Button
  46.        android:id="@+id/btRemove"
  47.        android:layout_width="match_parent"
  48.        android:layout_height="wrap_content"
  49.        android:layout_gravity="center"
  50.        android:onClick="onRemoveClick"
  51.        android:text="@string/text_btRemove" />
  52.  
  53.     <Button
  54.        android:id="@+id/btFinish"
  55.        android:layout_width="match_parent"
  56.        android:layout_height="wrap_content"
  57.        android:layout_gravity="center"
  58.        android:onClick="onFinishClick"
  59.        android:text="@string/text_btFinish" />
  60.  
  61.     <FrameLayout
  62.        android:id="@+id/myFrameLayoutContainer"
  63.        android:layout_width="match_parent"
  64.        android:layout_height="wrap_content"
  65.        android:layout_margin="12dp"
  66.        >
  67.     </FrameLayout>
  68.  
  69. </LinearLayout>
Add Comment
Please, Sign In to add comment