我在一个按钮和一个列表视图中使用线性布局..列表视图在运行时动态添加其项目..所以当时按钮位于列表视图后面并且不可见并且列表视图完全适合布局。
我想将 Button 放在 List 视图上方,并且在加载 list-view 后它也必须保留
提前致谢
我的 .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>
这里是搜索新设备按钮。
单击该按钮设备搜索蓝牙并添加到列表视图中
所以这就是我的应用程序中发生的事情..