02绝对布局

<span style="font-size:18px;"><?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >
<!--
    android:layout_x="338dp" 控件的绝对X的位置
    android:layout_y="210dp" 控件的绝对Y的位置
    因为在不同分辨率中位置不确定 无法做屏幕适配故放弃使用 现已过时
        
 -->
    <TextView
        android:id="@+id/textView1"
        android:layout_width="174dp"
        android:layout_height="100dp"
        android:layout_x="338dp"
        android:layout_y="210dp"
        android:text="TextView" />

</AbsoluteLayout>
</span>


posted on 2016-08-23 19:10  木鱼哥  阅读(112)  评论(0编辑  收藏  举报

导航