Advertisement
eddisusantoo

testtesttest

Sep 18th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.84 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    android:layout_height="fill_parent"
  4.    android:layout_width="fill_parent"
  5.    android:orientation="vertical">
  6.  
  7.     <!-- Green Background -->
  8.     <TextView
  9.        android:background="#ff00ff00"
  10.        android:gravity="bottom"
  11.        android:id="@+id/textView1"
  12.        android:layout_height="200dp"
  13.        android:layout_width="200dp"
  14.        android:text="Contoh Text Satu"
  15.        />
  16.  
  17.     <!-- BLUE Background -->
  18.     <TextView
  19.        android:background="#ff0004ff"
  20.        android:gravity="bottom"
  21.        android:id="@+id/textView2"
  22.        android:layout_height="148dp"
  23.        android:layout_width="127dp"
  24.        android:text="Contoh Text Dua"
  25.  
  26.        android:layout_gravity="left|top" />
  27.  
  28. </FrameLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement