簡體   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