如何创建一个调整为列出项目高度的方形按钮?

时间:2010-02-12 12:08:33

标签: android android-button

在Listview中,我想创建一个与列表项一样宽的方形按钮。我不想设置固定的宽度和高度,因为它应该适用于不同的分辨率。

有可能吗?

2 个答案:

答案 0 :(得分:0)

layout xml file tell it to fill it's parent

<Button android:layout_width="fill_parent" .... ></Button>

或者,如果您使用的是API,我认为您应该可以使用setLayoutParams

myButton.setLayoutParams(new AbsListView.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT)); 

答案 1 :(得分:0)

使用密度无关像素(dip),它是一个虚拟像素单位,以与密度无关的方式表达布局尺寸或位置。