android-想把Button放在listview上面

时间:2012-10-28 08:13:38

标签: java android android-layout

我在一个按钮和一个列表视图中使用线性布局。 list-view在运行时动态添加其项目.. 所以当时按钮位于列表视图后面,不可见,列表视图适合整个布局。

我想将Button放在列表视图上方,加载列表视图后也必须保留

先谢谢

我的.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>

enter image description here

这里是搜索新设备按钮。

点击该按钮设备搜索蓝牙并添加到列表视图中 enter image description here

所以这就是我申请中发生的事情..

4 个答案:

答案 0 :(得分:1)

我认为即便如此。试一试

...编辑

   <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/relative"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <Button
        android:id="@+id/btn_searchNewDevices"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="left"
        android:layout_marginTop="5dip"

        android:text="Search New Devices"
        android:textColor="#000000" />

    <ListView
        android:id="@+id/lst_add_newDevices"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/btn_searchNewDevices" 
        android:scrollbars="horizontal">
    </ListView>

</RelativeLayout>

,活动如下。

public class MainActivity extends Activity implements OnClickListener {
    ArrayAdapter<String> adapter;
    private Button mBTNSearch;
    private static ListView mLV_list;
    ArrayList<String> devicesList;
    SparseBooleanArray checked;
    RelativeLayout layout;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        mBTNSearch = (Button) findViewById(R.id.btn_searchNewDevices);
        devicesList = new ArrayList<String>();

        mLV_list = (ListView) findViewById(R.id.lst_add_newDevices);
        adapter = new ArrayAdapter<String>(this,
                android.R.layout.simple_list_item_1, devicesList);
        mBTNSearch.setOnClickListener(this);
      mLV_list.setAdapter(adapter);
    }

    public void onClick(View v) {

        adapter.add("new Device");
        adapter.notifyDataSetChanged();
    }

}

输出捕获如下

enter image description here

答案 1 :(得分:0)

尝试在列表视图的高度中使用android:layout_weight="1",确保您的按钮始终在屏幕上显示。

你应该尝试:

<?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:background="#000000"
    android:orientation="vertical" >
    <Button
        android:id="@+id/btn_searchNewDevices"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="left"
        android:layout_marginTop="5dip"
        android:background="#000000"
        android:text="Search New Devices"
        android:textColor="#FFFFFF" />
    <ListView
        android:id="@+id/lst_add_newDevices"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:scrollbars="horizontal" >
    </ListView>
</LinearLayout>

或者您可以使用ListView的addHeaderView()方法。这是tutorial

答案 2 :(得分:0)

尝试使用此代码进行布局。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" />
</LinearLayout>

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <ListView
        android:id="@+id/listView1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
       >
    </ListView>
</LinearLayout>

答案 3 :(得分:0)

尝试将listview放在滚动视图中。

<Button
    android:id="@+id/btn_searchNewDevices"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="left"
    android:layout_marginTop="5dip"
    android:background="#000000"
    android:text="Search New Devices"
    android:textColor="#FFFFFF" />

<ScrollView
    android:id="@+id/scroll"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_margin="7dip"
    android:scrollbars="none" >

    <ListView
        android:id="@+id/lst_add_newDevices"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:scrollbars="horizontal" >
    </ListView>
</ScrollView>

它可能会奏效。我没有测试过,所以不确定。