让ListView显示在Button上面

系统 1439 0
让ListView显示在Button上面

通常情况下ListView的android:layout_height属性我们都设置成"fill_parent",但是这样一来,它就会占据整个屏幕,如果它下面还有控件的话,就会被它“挤到”外面去。如何解决这种情况呢?表面上使用LinearLayout是最简单的,但就会出现上面的情形。那就使用RelativeLayout吧。
    
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
	    <Button
	    android:id="@+id/btn_1" 
	    android:layout_width="fill_parent"
	    android:layout_height="wrap_content"
	    android:text="click_1"
	     android:layout_alignParentLeft="true"
	     android:layout_alignParentBottom="true"
	    />
	    <Button  
	    android:id="@+id/btn_0" 
	    android:layout_width="fill_parent"
	    android:layout_height="wrap_content"
	    android:text="click_0"
	    android:layout_above="@id/btn_1"
	    android:layout_alignParentLeft="true"
	    />
    <ListView android:id="@+id/listview" 
	    android:layout_width="fill_parent"
	    android:layout_height="fill_parent"
	    android:layout_above="@id/btn_0"
	    android:layout_alignParentLeft="true"
	    android:layout_alignParentTop="true"
	    />
</RelativeLayout>

  

上面的布局仅作参考!
当然如果将ListView换成ScrollView也是一样的,这里只起到抛砖引玉的目的。

另外,你也可以在ListView中使用android:layout_weight="1",这样就可以将它放在LinearLayout,这样是最简单的!

让ListView显示在Button上面


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论