我有這個XML文件作爲appwidget的佈局:按鈕不會顯示在Android appwidget佈局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@android:color/black" >
<!-- ListView to be shown on widget -->
<ListView
android:id="@+id/listViewWidget"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<Button
android:id="@+id/refresh_appwidget"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="refresh"
/>
</LinearLayout>
不顯示按鈕,我不知道原因。我測試了layout_with match_parent,但總是相同的結果。
我該如何解決這個問題?
您的按鈕是不是因爲你的ListView的大小顯示。你的按鈕在列表視圖下。 – tchike
不要爲「ListView」聲明「wrap_content」。 –