【问题标题】:How to split the screen with two equal LinearLayouts?如何用两个相等的LinearLayouts分割屏幕?
【发布时间】:2010-08-06 14:50:12
【问题描述】:

想用两个 LinearLayout 为我的应用拆分一个屏幕。我应该使用什么参数来精确分割成两个相等的部分 - 第一个 LinearLayout 在顶部,第二个在它下面。

【问题讨论】:

  • 每个布局使用 weight=0.5
  • 两种布局的权重应该“相同”,不必是分数

标签: android android-linearlayout


【解决方案1】:

使用layout_weight 属性。布局大致如下所示:

<LinearLayout android:orientation="horizontal"
    android:layout_height="fill_parent" 
    android:layout_width="fill_parent">

    <LinearLayout 
        android:layout_weight="1" 
        android:layout_height="fill_parent" 
        android:layout_width="0dp"/>

    <LinearLayout 
        android:layout_weight="1" 
        android:layout_height="fill_parent" 
        android:layout_width="0dp"/>

</LinearLayout>

【讨论】:

  • 看看这个关于使用 layout_weight 属性的教程chess-ix.com/2012/01/17/…
  • 权重不​​应该是0.5和0.5吗?
  • @Marek 据我所知,只要他们是平等的,这并不重要。
【解决方案2】:

我在 4-5 年后回答这个问题,但最佳做法如下

<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"
   tools:context=".MainActivity">

   <LinearLayout
      android:id="@+id/firstLayout"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:layout_toLeftOf="@+id/secondView"
      android:orientation="vertical"></LinearLayout>

   <View
      android:id="@+id/secondView"
      android:layout_width="0dp"
      android:layout_height="match_parent"
      android:layout_centerHorizontal="true" />

   <LinearLayout
      android:id="@+id/thirdLayout"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:layout_toRightOf="@+id/secondView"
      android:orientation="vertical"></LinearLayout>
</RelativeLayout>

这是正确的方法,因为 layout_weight 的使用对于 UI 操作来说总是很繁重。 使用 LinearLayout 平均拆分布局不是一个好习惯

【讨论】:

【解决方案3】:

把它放在那里:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#FF0000"
    android:weightSum="4"
    android:padding="5dp"> <!-- to show what the parent is -->
    <LinearLayout
        android:background="#0000FF"
        android:layout_height="0dp"
        android:layout_width="match_parent"
        android:layout_weight="2" />
    <LinearLayout
        android:background="#00FF00"
        android:layout_height="0dp"
        android:layout_width="match_parent"
        android:layout_weight="1" />
</LinearLayout>

【讨论】:

    【解决方案4】:

    为了将 ui 分成两个相等的部分,您可以在父 LinearLayout 中使用 weightSum of 2 并将 layout_weight of 1 分配给每个如下图

    <?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="horizontal"
        android:weightSum="2">
    
            <LinearLayout
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:orientation="vertical">
    
            </LinearLayout>
    
           <LinearLayout
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:orientation="vertical">
    
           </LinearLayout>
    
    
    </LinearLayout>
    

    【讨论】:

    • 感谢这对我有很大帮助。
    【解决方案5】:

    将布局拆分为相等的部分

    使用布局权重。请记住,将layout_width 设置为儿童的0dp 以使其按预期工作非常重要。

    关于父布局:

    1. 将父 Layout 的 weightSum 设置为 1 (android:weightSum="1")

    关于子布局:

    1. layout_width 设置为0dp (android:layout_width="0dp")
    2. layout_weight 设置为0.5 [权重总和的一半等于二] (android:layout_weight="0.5")


    将布局分成三个相等的部分:

    • 家长weightSum3
    • 孩子layout_weight:1

    将布局分成四个相等的部分:

    • 家长weightSum1
    • 孩子layout_weight:0.25

    将布局拆分为 n 等份:

    • 父母weightSumn
    • 孩子layout_weight:1


    下面是将布局拆分为两个相等部分的示例布局。
    <LinearLayout
        android:id="@+id/layout_top"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:weightSum="1">
    
        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.5"
            android:orientation="vertical">
    
            <TextView .. />
    
            <EditText .../>
    
        </LinearLayout>
    
        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.5"
            android:orientation="vertical">
    
            <TextView ../>
    
            <EditText ../>
    
        </LinearLayout>
    
    </LinearLayout>
    

    【讨论】:

      【解决方案6】:
      <?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:orientation="horizontal"
              android:layout_width="match_parent"
              android:layout_height="match_parent">
              <LinearLayout
                  android:orientation="vertical"
                  android:layout_weight="1"
                  android:layout_width="0dp"
                  android:layout_height="match_parent"
                  tools:context=".MainActivity">
                  <TextView
                      android:layout_marginTop="16dp"
                      android:textSize="18sp"
                      android:textStyle="bold"
                      android:padding="4dp"
                      android:textColor="#EA80FC"
                      android:fontFamily="sans-serif-medium"
                      android:text="@string/team_a"
                      android:gravity="center_horizontal"
                      android:layout_width="match_parent"
                      android:layout_height="wrap_content" />
                  <TextView
                      android:id="@+id/team_a_score"
                      android:text="@string/_0"
                      android:textSize="56sp"
                      android:padding="4dp"
                      android:gravity="center_horizontal"
                      android:layout_width="match_parent"
                      android:layout_height="wrap_content" />
                  <TextView
                      android:id="@+id/team_a_fouls"
                      android:text="@string/fouls"
                      android:padding="4dp"
                      android:textSize="26sp"
                      android:gravity="center_horizontal"
                      android:layout_width="match_parent"
                      android:layout_height="wrap_content" />
                  <Button
                      android:text="@string/_1_points"
                      android:layout_width="match_parent"
                      android:onClick="addOnePointTeamA"
                      android:textColor="#fff"
                      android:layout_margin="6dp"
                      android:layout_height="wrap_content" />
                  <Button
                      android:text="@string/_2_points"
                      android:textColor="#fff"
                      android:onClick="addTwoPointTeamA"
                      android:layout_width="match_parent"
                      android:layout_margin="6dp"
                      android:layout_height="wrap_content" />
                  <Button
                      android:text="@string/_3_points"
                      android:textColor="#fff"
                      android:onClick="addThreePointTeamA"
                      android:layout_margin="6dp"
                      android:layout_width="match_parent"
                      android:layout_height="wrap_content" />
                  <Button
                      android:text="@string/_1_point_foul"
                      android:textColor="#fff"
                      android:layout_width="match_parent"
                      android:onClick="addOnePointFoulTeamA"
                      android:layout_margin="6dp"
                      android:layout_height="wrap_content" />
              </LinearLayout>
              <LinearLayout
                  android:orientation="vertical"
                  android:layout_weight="1"
                  android:layout_width="0dp"
                  android:layout_height="match_parent"
                  tools:context=".MainActivity">
                  <TextView
                      android:text="@string/team_b"
                      android:textColor="#EA80FC"
                      android:textStyle="bold"
                      android:padding="4dp"
                      android:layout_marginTop="16dp"
                      android:fontFamily="sans-serif-medium"
                      android:textSize="18sp"
                      android:gravity="center_horizontal"
                      android:layout_width="match_parent"
                      android:layout_height="wrap_content" />
                  <TextView
                      android:id="@+id/team_b_score"
                      android:text="0"
                      android:padding="4dp"
                      android:textSize="56sp"
                      android:gravity="center_horizontal"
                      android:layout_width="match_parent"
                      android:layout_height="wrap_content" />
                  <TextView
                      android:id="@+id/team_b_fouls"
                      android:text="Fouls"
                      android:padding="4dp"
                      android:textSize="26sp"
                      android:gravity="center_horizontal"
                      android:layout_width="match_parent"
                      android:layout_height="wrap_content" />
                  <Button
                      android:text="@string/_1_points"
                      android:textColor="#fff"
                      android:fontFamily="sans-serif-medium"
                      android:layout_width="match_parent"
                      android:onClick="addOnePointTeamB"
                      android:layout_margin="6dp"
                      android:layout_height="wrap_content" />
                  <Button
                      android:text="@string/_2_points"
                      android:layout_margin="6dp"
                      android:fontFamily="sans-serif-medium"
                      android:textColor="#fff"
                      android:onClick="addTwoPointTeamB"
                      android:layout_width="match_parent"
                      android:layout_height="wrap_content" />
                  <Button
                      android:text="@string/_3_points"
                      android:fontFamily="sans-serif-medium"
                      android:textColor="#fff"
                      android:onClick="addThreePointTeamB"
                      android:layout_margin="6dp"
                      android:layout_width="match_parent"
                      android:layout_height="wrap_content" />
                  <Button
                      android:text="@string/_1_point_foul"
                      android:textColor="#fff"
                      android:onClick="addOnePointFoulTeamB"
                      android:layout_width="match_parent"
                      android:layout_margin="6dp"
                      android:layout_height="wrap_content" />
      
      
              </LinearLayout>
          </LinearLayout>
          <Button
              android:text="@string/reset"
              android:layout_marginBottom="25dp"
              android:onClick="resetScore"
              android:textColor="#fff"
              android:fontFamily="sans-serif-medium"
              android:layout_alignParentBottom="true"
              android:layout_centerHorizontal="true"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content" />
      
      </RelativeLayout>
      

      【讨论】:

      • 解决方案中请详细说明
      【解决方案7】:

      使用android:layout_weightandroid:weightSum 将布局分成相等的部分。将layout_width 设置为儿童的0dp 以使其按预期工作非常重要。

      在父布局上

      将父Layout的weightSum设置为2(android:weightSum="2")

      关于子布局

      layout_width 设置为0dp (android:layout_width="0dp") 将layout_weight 设置为1 [权重总和的一半] (android:layout_weight="1")

      <!-- Parent layout -->
      <LinearLayout
          android:id="@+id/layout_parent"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:orientation="horizontal"
          android:weightSum="2">
          <!-- Child layout -->
          <LinearLayout
              android:id="@+id/layout_child_1"
              android:layout_width="0dp"
              android:layout_height="wrap_content"
              android:orientation="vertical"
              android:layout_weight="1">
              ...
          </LinearLayout>
          <LinearLayout
              android:id="@+id/layout_child_1"
              android:layout_width="0dp"
              android:layout_height="wrap_content"
              android:orientation="vertical"
              android:layout_weight="1">
              ...
          </LinearLayout>
      </LinearLayout>
      

      【讨论】:

        猜你喜欢
        • 2021-05-05
        • 2019-07-22
        • 1970-01-01
        • 2023-03-24
        • 2019-06-23
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多