Skip to content

Instantly share code, notes, and snippets.

@agiletalk
Created April 13, 2011 07:40
Show Gist options
  • Save agiletalk/917139 to your computer and use it in GitHub Desktop.
Save agiletalk/917139 to your computer and use it in GitHub Desktop.
[예제] AbsoluteLayout
<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x="50px"
android:layout_y="100px"
android:textSize="15pt"
android:text="(50,100)"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x="200px"
android:layout_y="70px"
android:textSize="15pt"
android:text="(200,70)"
/>
</AbsoluteLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment