我写作的应用的主要布局位于RelativeLayout
,内部有LinearLayout
和FrameLayout
。在LinearLayout
中,有用户实际与之交互的按钮,文字和内容。在FrameLayout
内,有一个图形。 FrameLayout
停留在右下角,LinearLayout
位于顶部。
在大多数不同尺寸的屏幕上显示时,此布局效果很好。但是,有一个设备的屏幕太小,只是这个图形的一点点恼人。如果在XML中没有足够的空间,有没有办法自动禁用对象?我知道我可以通过编程方式计算它,但我想知道是否有更好的方法
这是我的布局文件的相关部分:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/buttonLayout">
</LinearLayout>
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_below="@id/buttonLayout">
<ImageView
android:layout_width="139dp"
android:layout_height="48dp"
android:layout_gravity="bottom" />
</FrameLayout>
</RelativeLayout>