我在一個按鈕和一個列表視圖裏面使用線性佈局.. list-view在運行時動態地添加它的項目.. 所以那時按鈕落後列表視圖和不可見以及列表視圖適合整個佈局。android-想把按鈕放在listview上面
我想提出的按鈕列表視圖之上,它也必須保持裝列表視圖後提前
感謝
我的.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:orientation="vertical"
android:background="#000000">
<Button
android:id="@+id/btn_searchNewDevices"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:layout_gravity="left"
android:background="#000000"
android:textColor="#FFFFFF"
android:text="Search New Devices"
/>
<ListView
android:id="@+id/lst_add_newDevices"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="horizontal" >
</ListView>
</LinearLayout>
這裏是搜索新設備按鈕。
對藍牙該按鈕設備搜索點擊添加到列表視圖
所以這件事在我的應用程序發生..
直到它不工作.. –