Created
April 13, 2011 07:40
-
-
Save agiletalk/917139 to your computer and use it in GitHub Desktop.
[예제] AbsoluteLayout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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