Advertisement
Andrilaksono222

act.java

Aug 30th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.59 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    android:layout_width="fill_parent"
  4.    android:layout_height="fill_parent"
  5.    android:orientation="vertical" >
  6.    
  7.    <TextView android:id="@+id/text"
  8.       android:layout_width="wrap_content"
  9.       android:layout_height="wrap_content"
  10.       android:text="Hello, I am a TextView" />
  11.  
  12.    <Button android:id="@+id/button"
  13.       android:layout_width="wrap_content"
  14.       android:layout_height="wrap_content"
  15.       android:text="Hello, I am a Button" />
  16.      
  17. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement