Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 25th, 2012  |  syntax: XML  |  size: 0.40 KB  |  hits: 61  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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>