0

私のアクティビティ XML のレイアウトは次のとおりです。

ここに画像の説明を入力

何らかの理由で、画面の下部にそのボタンが表示されません。コードは次のとおりです。

<?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:background="@drawable/app_bg"
    android:orientation="vertical" >    

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

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/bg_transparent"
        android:orientation="vertical"
        android:minHeight="44dip"
        android:minWidth="44dip" >

        <TextView
            android:id="@+id/lblNotesCount"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:textSize="18sp"
            android:textStyle="bold"
            android:textColor="@color/lblNotesCountColor" />

        <TextView
            android:id="@+id/lblTxtNotes"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:textSize="14sp"
            android:textStyle="bold"
            android:textColor="@color/lblNotesCountColor" />
    </LinearLayout>


    <TextView
        android:id="@+id/txtActivityListByCategory_Header"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:ellipsize="end"
        android:gravity="center_vertical|center_horizontal"
        android:paddingLeft="2dp"
        android:singleLine="true"
        android:textStyle="bold"
        android:textColor="@color/color_WHITE" />

    <Button
        android:id="@+id/btnAddNote"
        style="?android:attr/buttonStyleSmall"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/btn_new_note_selector"
        android:minHeight="44dip"
        android:minWidth="44dip" />
</LinearLayout>

<TextView
    android:id="@+id/emptyList"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:paddingLeft="2dp"
    android:text="@string/txtEmptyList"
    android:textAppearance="?android:attr/textAppearanceMedium"
    android:textColor="@color/emptyList" />

<ListView
    android:id="@+id/lstNotesByCategory"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:drawSelectorOnTop="false" >
</ListView>


<Button
    android:id="@+id/btnaBack"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/btnBack" />

一番下のTextViewとListViewを別のLinearLayoutに入れようとしましたが、そのボタンにlayout_weightを与えようとしました-何も役に立たず、まだそのボタンが表示されません.LinearLayoutはアクティビティの一番下まで行きます.

ここで何が問題なのですか?そのボタンが表示されないのはなぜですか?

編集:XMLコード全体を書き留めました

4

4 に答える 4

11

ListViewandroid:layout_height="0dp"android:layout_weight="1"

このような:

<ListView
    android:id="@+id/lstNotesByCategory"
    android:layout_width="wrap_content"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:drawSelectorOnTop="false" >
</ListView>

<Button
    android:id="@+id/btnaBack"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/btnBack" />

これにより、ListView がボタンの境界線まで垂直に拡張されます。

お役に立てれば

于 2012-12-05T10:29:24.603 に答える
1

ListView の高さを修正する

<ListView
    android:id="@+id/lstNotesByCategory"
    android:layout_width="wrap_content"
    android:layout_height="height you want to give to list"
    android:drawSelectorOnTop="false" >
</ListView>

また

<ListView
        android:id="@+id/lstNotesByCategory"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:drawSelectorOnTop="false" 
        android:layout_above="@id/btnaBack">
    </ListView>

このコードを使用してみてください。これは役に立ちます

于 2012-12-05T10:20:31.313 に答える
0

これを試してみると、Layou_weight の使用方法を理解するのに役立ちます

<TextView
    android:id="@+id/emptyList"
    android:layout_width="wrap_content"
    android:layout_height="0dp"
    android:layout_weight="2"
    android:paddingLeft="2dp"
    android:text="txtEmptyListsss"
    android:textAppearance="?android:attr/textAppearanceMedium"
    android:textColor="#ffffff" />

<ListView
    android:id="@+id/lstNotesByCategory"
    android:layout_width="wrap_content"
    android:layout_height="0dp"
     android:layout_weight="6"
    android:drawSelectorOnTop="false" >
</ListView>

<Button
    android:id="@+id/btnaBack"
    android:layout_height="0dp"
    android:layout_weight="2"
    android:layout_width="fill_parent"
    android:text="btnBack" />

  </LinearLayout>
于 2012-12-05T10:48:14.147 に答える