我写了个下载框。布局文件用RelativeLayout 写的。发现在安卓11的设备上无法设置宽度。布局控件叠在一起了。
解决方案:
1.在最外层用FrameLayout 包裹,宽高都用match_parent
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:id="@+id/bg"
android:layout_width="600dp"
android:layout_height="wrap_content"
android:background="@drawable/bg"
>
其他子控件
</RelativeLayout>
</FrameLayout>
参考文章:
https://blog.youkuaiyun.com/woshiliuzemin/article/details/82049684