我有两种布局。实际上5,3个垂直一个在另一个之下,在中间一个我有2个布局并排。我需要它们固定大小,所以它们确实会改变。但是只要我按下其中一个按钮,它们就会改变尺寸,如下图所示。如何让他们不改变?无论如何,这是我的代码和图片。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="20" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_weight="3" >
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="15"
android:orientation="horizontal" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_weight="1" >
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_weight="1" >
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_weight="2" >
</LinearLayout>
</LinearLayout>
答案 0 :(得分:1)
尝试将两个内部布局更改为:
选项#1 :这将水平修复布局,而不是垂直修复
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_weight="50" >
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_weight="50" >
</LinearLayout>
选项#2 :这将修复两个方向的布局
将LinearLayouts
与嵌套权重一起使用效率非常低。相反,将您的根视图更改为RelativeLayout
并删除权重。 请注意,这不是100%完整的解决方案,但一定会让您入门。这会将第一个LinearLayout
放在布局的顶部,而最后的LinearLayout
在布局的底部。中间的一个将始终位于俯视图下方和底部视图下方。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout android:id="@+id/top"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:orientation="vertical">
</LinearLayout>
<LinearLayout android:id="@+id/middle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/top"
android:layout_above="@+id/bottom"
android:orientation="horizontal" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_weight="1" >
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical">
</LinearLayout>
</LinearLayout>
<LinearLayout android:id="@+id/bottom"
android:layout_alignParentBottom="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
</LinearLayout>
</RelativeLayout>
答案 1 :(得分:0)
尝试将layout_weight更改为中间线性布局的两个子线性布局的0.5。