繁体   English   中英

将LinearLayout放置在其他LinearLayout的底部

[英]Placing LinearLayout to the bottom of other LinearLayout

我正在尝试使用Caldroid日历小部件并将其放置在屏幕底部。 但是由于某种原因,它并没有到达底部,我在小部件下方看到了一些可用空间。

这是我的代码

  <?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <!-- The main content view -->
    <LinearLayout
        android:id="@+id/r1"
        android:layout_width="match_parent"
        android:layout_height="match_parent" 
        android:orientation="vertical"> 

    <ListView
        android:id="@+id/lv1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:clickable="true"
        android:focusable="true" 
         />


    <LinearLayout
        android:id="@+id/calendar1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
       >

    </LinearLayout>
    </LinearLayout>

    <!-- The navigation drawer -->


    <ListView 
        android:id="@+id/left_drawer"
        android:layout_width="300dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"

        android:dividerHeight="0dp" 
        android:background="#fff"/>

</android.support.v4.widget.DrawerLayout>

我以编程方式用caldroid Fragment替换了calendar1。

下面是我的屏幕。 请让我知道如何将日历小部件推到底部。 我尝试了layout_weight,layout_gravity但没有效果。

在此处输入图片说明

(编辑)相对布局

![<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <!-- The main content view -->
    <LinearLayout
        android:id="@+id/r1"
        android:layout_width="match_parent"
        android:layout_height="match_parent" 
        android:orientation="vertical">

   <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content" >


    <ListView
        android:id="@+id/lv1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:clickable="true"
        android:focusable="true" 
         />


    <LinearLayout
        android:id="@+id/calendar1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_alignParentBottom="true"
       >


    </LinearLayout>
     </RelativeLayout>
    </LinearLayout>

    <!-- The navigation drawer -->


    <ListView 
        android:id="@+id/left_drawer"
        android:layout_width="300dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"

        android:dividerHeight="0dp" 
        android:background="#fff"/>

</android.support.v4.widget.DrawerLayout>][2]

logcat错误日志

我想如果您尝试这样做,它将起作用。 在这里,我将两个更粗略的布局放在相对布局中,这样我就可以操纵它们在屏幕上的位置。

    <?xml version="1.0" encoding="utf-8"?>
    <android.support.v4.widget.DrawerLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/drawer_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <!-- The main content view -->

        <RelativeLayout
            android:id="@+id/relativeLayout"
            android:layout_width="match_parent"
            android:layout_height="match_parent" 
            android:orientation="vertical">        

        <LinearLayout
            android:id="@+id/r1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" 
            android:orientation="vertical"> 

        <ListView
            android:id="@+id/lv1"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:clickable="true"
            android:focusable="true"  />         

        </LinearLayout>        

        <LinearLayout
            android:id="@+id/calendar1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:layout_alignParentBottom="true"
           >

        </LinearLayout>

        </RelativeLayout>

        <!-- The navigation drawer -->
        <ListView 
            android:id="@+id/left_drawer"
            android:layout_width="300dp"
            android:layout_height="match_parent"
            android:layout_gravity="start"

            android:dividerHeight="0dp" 
            android:background="#fff"/>

   </android.support.v4.widget.DrawerLayout>

希望能帮助到你!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM