0

我在一个主从应用程序中工作,我的 activity_twopane 在详细信息窗格的底部有一个按钮栏(我想放置它)。我可以将它放在碎片细节下,但无论如何我都无法让它与底部对齐。
我让它在单窗格模式下工作正常,使用android:layout_weight="1",但即使有使用嵌套权重的警告,它也不能在两个窗格模式下工作。
这就是它现在的样子:
当前布局
这是我到目前为止的布局 xml:

<LinearLayout 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"
    android:layout_marginLeft="16dp"
    android:layout_marginRight="16dp"
    android:baselineAligned="false"
    android:divider="?android:attr/dividerHorizontal"
    android:orientation="horizontal"
    android:showDividers="middle"
    tools:context=".DocumentoListActivity" >

    <fragment
        android:id="@+id/documento_list"
        android:name="br.com.DocumentoListFragment"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        tools:layout="@android:layout/list_content" />

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content" 
        android:layout_weight="3"
        android:orientation="vertical">

        <FrameLayout
            android:id="@+id/documento_detail_container"
            android:layout_width="match_parent"
            android:layout_height="fill_parent" />

        <LinearLayout
            android:id="@+id/documento_twopane_buttons"
            style="android:attr/buttonBarStyle"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal" >

            <Button
                android:id="@+id/documento_twopane_buttonBaixar"
                style="?android:attr/buttonBarButtonStyle"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Button 1" />

            <Button
                android:id="@+id/documento_twopane_buttonAssinar"
                style="?android:attr/buttonBarButtonStyle"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Button 2" />
        </LinearLayout>
    </LinearLayout>

</LinearLayout>  

由于我的按钮栏在 a 内LinearLayout,我不能RelativeLayout with android:layout_alignParentBottom="true"在其中使用 a 。

问题

这对LinearLayouts 可行还是我必须更改所有内容并将其放入RelativeLayout??

4

3 回答 3

1

Wrap your buttons Linear layout inside another layout with height set to match_parent

Set the height of you Linear layout (containing buttons) to match_parent, and set its gravity to bottom

This works as you wish

 <LinearLayout 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"
 android:layout_marginLeft="16dp"
 android:layout_marginRight="16dp"
 android:baselineAligned="false"
 android:orientation="horizontal"
 android:showDividers="middle"
 tools:context=".DocumentoListActivity" >

<fragment
android:id="@+id/documento_list"
android:name="br.com.DocumentoListFragment"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
tools:layout="@android:layout/list_content" />

<!-- Set this layout height to match_parent -->
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="3"
android:orientation="vertical" >

 <!-- Set this layout height to wrap_content -->
<FrameLayout
    android:id="@+id/documento_detail_container"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />

 <!-- Set this layout height to match_parent -->
<LinearLayout
    android:id="@+id/documento_twopane_buttons"
    style="android:attr/buttonBarStyle"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

<!-- Set this layout height to match_parent and gravity to bottom -->
<LinearLayout
    android:id="@+id/documento_twopane_buttons1"
    style="android:attr/buttonBarStyle"
    android:layout_width="fill_parent"
    android:layout_height="match_parent"
    android:layout_gravity="bottom"
    android:baselineAligned="false"
    android:gravity="bottom"
    android:orientation="horizontal" >

    <Button
        android:id="@+id/documento_twopane_buttonBaixar"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 1" />

    <Button
        android:id="@+id/documento_twopane_buttonAssinar"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 2" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
</LinearLayout>
于 2013-08-26T16:51:07.043 回答
1

您可以RelativeLayout在此处使用,但是以这种方式使用嵌套布局并不是什么大问题。它只会膨胀一次。您的详细信息LinearLayout应如下所示:

<LinearLayout
    android:layout_width="0dp"
    android:layout_height="wrap_content" 
    android:layout_weight="3"
    android:orientation="vertical">

    <FrameLayout
        android:id="@+id/documento_detail_container"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:weight="1" />

    <LinearLayout
        android:id="@+id/documento_twopane_buttons"
        style="android:attr/buttonBarStyle"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

        <Button
            android:id="@+id/documento_twopane_buttonBaixar"
            style="?android:attr/buttonBarButtonStyle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button 1" />

        <Button
            android:id="@+id/documento_twopane_buttonAssinar"
            style="?android:attr/buttonBarButtonStyle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button 2" />
    </LinearLayout>
</LinearLayout>

这里要注意的重要一点是,您不必android:weightLinearLayout. 如果你有 2 个孩子,将主要的体重设置为 1,以 0 作为对应的长宽轴,你可以wrap_content和另一个孩子一起使用,它只占用所需的空间。

于 2013-08-26T16:27:36.363 回答
0

尽管@twntee 的回答看起来效果很好,但如果右窗格上的文本太长,它最终会出现在按钮的顶部,使它们无法访问。所以我不得不做一些开关。所以现在我不得不使用嵌套的权重,但至少不需要那些嵌套的LinearLayouts

<LinearLayout 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"
    android:layout_marginLeft="16dp"
    android:layout_marginRight="16dp"
    android:baselineAligned="false"
    android:orientation="horizontal"
    android:showDividers="middle"
    tools:context=".DocumentoListActivity" >

    <fragment
        android:id="@+id/documento_list"
        android:name="br.com.DocumentoListFragment"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        tools:layout="@android:layout/list_content" />

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="3"
        android:orientation="vertical" >

        <FrameLayout
            android:id="@+id/documento_detail_container"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            tools:context=".DocumentoDetailActivity"
            tools:ignore="MergeRootFrame,NestedWeights" />

        <LinearLayout
            android:id="@+id/documento_twopane_buttons"
            style="android:attr/buttonBarStyle"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:gravity="bottom"
            android:orientation="horizontal" >

            <Button
                android:id="@+id/documento_twopane_buttonOne"
                style="?android:attr/buttonBarButtonStyle"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/button_one" />

            <Button
                android:id="@+id/documento_twopane_buttonTwo"
                style="?android:attr/buttonBarButtonStyle"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/button_two" />
        </LinearLayout>
    </LinearLayout>

</LinearLayout>
于 2013-08-30T13:45:00.167 回答