布局视图组——AbsoluteLayout

作者:追风剑情 发布于:2015-7-9 21:12 分类:Android

从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

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号