在XML設計上我添加了兩個按鈕,其中一個按鈕的工作沒有任何問題,但第二個按鈕在設備上不可見。 (這兩個按鈕保留在XML中的ListView中)。如果有人能幫助我理解爲什麼會發生這種情況,我會很高興,我能否解決它。謝謝。Android按鈕在設備上不可見
XML(設置按鈕的問題是按鈕) -
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="gg.gg.MainActivity">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:text="Tasks"
android:background="#e2e2e2" />
<ListView
android:id="@+id/list_todo"
tools:listitem="@layout/item_todo"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<Button
android:layout_width="60dp"
android:layout_height="60dp"
android:src="@drawable/settings"
android:background="@drawable/settings"
android:onClick="ButtonClick"
android:id="@+id/settings"
android:layout_above="@+id/add_task"
android:layout_alignParentEnd="true" />
<Button
android:layout_width="60dp"
android:layout_height="60dp"
android:id="@+id/add_task"
android:src="@drawable/addtask"
android:background="@drawable/addtask"
android:layout_alignParentBottom="true"
android:layout_alignEnd="@+id/settings" />
</RelativeLayout>
試着給你的代碼的元素提供所需的權重。 –
我把你的XML粘貼到一個虛擬項目中(假設你沒有在繪圖中做任何奇怪的事情),它們都顯示在彼此之上。你在看什麼版本的Android? –
@ChrisWard API 22 – proli2