鸟语天空
布局视图组——AbsoluteLayout
post by:追风剑情 2015-7-9 21:12

从Android 1.5以后,AbsoluteLayout已经被弃用了(尽管当前版本仍旧支持它)。鉴于不能保证在Android的未来版本中是否支持此视图组,应该在用户界面中避免使用AbsoluteLayout,而使用其他视图组。

<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    tools:context="${relativePackage}.${activityClass}" >

    <Button
        android:layout_width="188dp"
        android:layout_height="wrap_content"
        android:text="Button"
        android:layout_x="126px"
        android:layout_y="361px" />
    
    <Button
        android:layout_width="113dp"
        android:layout_height="wrap_content"
        android:text="Button"
        android:layout_x="12px"
        android:layout_y="361px" />

</AbsoluteLayout>

运行效果

aaaaaaaaaaaaa.png

评论:
发表评论:
昵称

邮件地址 (选填)

个人主页 (选填)

内容