使用LinearLayout分割屏幕的问题

时间:2012-04-09 22:23:50

标签: android android-layout

我在使用linearLayout分割屏幕时遇到了问题, 我的目标是将它分成9个双鱼座 - 当我开始使用LinearLayout时,我得到了以下结果:

http://imageshack.us/photo/my-images/4/firstna.png/

使用以下xml代码:

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
    <LinearLayout
  android:orientation="horizontal"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:layout_weight="1"
  android:baselineAligned="false">
    <FrameLayout
      android:gravity="center_horizontal"
      android:background="#aa0000"
      android:layout_width="wrap_content"
      android:layout_height="fill_parent"
      android:layout_weight="1">
    </FrameLayout>
    <FrameLayout
      android:gravity="center_horizontal"
      android:background="#00aa00"
      android:layout_width="wrap_content"
      android:layout_height="fill_parent"
      android:layout_weight="4"/>
    <FrameLayout
      android:gravity="center_horizontal"
      android:background="#aaaa00"
      android:layout_width="wrap_content"
      android:layout_height="fill_parent"
      android:layout_weight="1"/>
    </LinearLayout>
    </LinearLayout>

稍后当我尝试向左侧FrameLayout添加内容时,它改变了此FrameLayout的比例(这是问题..):

http://imageshack.us/photo/my-images/692/secondp.png/

使用以下代码:

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
    <LinearLayout
  android:orientation="horizontal"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:layout_weight="1"
  android:baselineAligned="false">
  <FrameLayout
      android:gravity="center_horizontal"
      android:background="#aa0000"
      android:layout_width="wrap_content"
      android:layout_height="fill_parent"
      android:layout_weight="1">
      <LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1">
<TextView
    android:text="row one"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"/>
<TextView
    android:text="row two"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"/>
<TextView
    android:text="row three"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"/>
<TextView
    android:text="row four"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"/>
    </LinearLayout>
    </FrameLayout>
    <FrameLayout
      android:gravity="center_horizontal"
      android:background="#00aa00"
      android:layout_width="wrap_content"
      android:layout_height="fill_parent"
      android:layout_weight="4"/>
    <FrameLayout
      android:gravity="center_horizontal"
      android:background="#aaaa00"
      android:layout_width="wrap_content"
      android:layout_height="fill_parent"
      android:layout_weight="1"/>
    </LinearLayout>
    </LinearLayout>

我希望能够使用layout_weight属性控制布局 - 如果向FrameLayout添加内容会改变其比例,我需要您帮助找到另一个容器,该比例将被保存。 感谢。

1 个答案:

答案 0 :(得分:0)

哇,你使用了很多嵌套布局!你的左手布局是否需要是一个框架布局,其中包含另一个linearlayout,然后是所有的textview?或者您可以只替换FrameLayout父级并将背景颜色移动到垂直LinearLayout?

实际上,为什么你也需要第二个线性布局?您可以指定第一个线性布局的方向为水平方向(无论如何都在高度上有fill_parent),然后删除第二个嵌套的线性布局。

此外,您应该考虑将FrameLayouts的布局宽度更改为0dp,以便根据权重动态调整大小。