我正在處理一些ListView
我想在它下面顯示一個Button
我正在使用下面的代碼,但這不起作用。在ListView下的按鈕在Android中不可見
<?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" >
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:cacheColorHint="#00000000"
android:drawSelectorOnTop="false" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
</LinearLayout>
該按鈕不可見,我不知道爲什麼:/。任何幫助將是有益的問候。
嘗試給它一個限定的寬度值,而不是WRAP_CONTENT,即 '150dp'。 – Mxyk
我試過這個和listview流血到按鈕區域。 – EJK