首页上一页 1 下一页尾页 1 条记录 1/1页
设置“现在更新”的button时,无法使用layout_toLeftOf等属性设置,一直报错
发表在Android图书答疑
2019-06-13 悬赏:1 学分
《Android开发详解》第3章 App UI设计 83页-84页
是否精华
是
否
版块置顶:
是
否
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" android:background="@mipmap/bg"> <TextView android:id="@+id/text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="发现有新的版本,你想现在就安装吗?" android:layout_centerInParent="true" /> <Button android:id="@+id/button2" android:text="以后再说" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@id/text" android:layout_alignRight="@id/text"/> <Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@id/text" android:layout_toLeftOf="@id/button2" android:text="现在更新" /> </RelativeLayout>