Guest User

Untitled

a guest
Apr 25th, 2012
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.40 KB | None | 0 0
  1. // main.xml выведет "Hello"
  2. <?xml version="1.0" encoding="utf-8"?>
  3. <LinearLayout
  4.      xmlns:android="http://schemas.android.com/apk/res/android"
  5.      android:layout_width="fill_parent"
  6.      android:layout_height="fill_parent"
  7.      android:orientation="vertical">
  8.     <TextView
  9.          android:layout_width="fill_parent"
  10.          android:layout_height="wrap_content"
  11.          android:text="Hello!"
  12.     </TextView>
  13. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment