在Listview中,我想创建一个与列表项一样宽的方形按钮。我不想设置固定的宽度和高度,因为它应该适用于不同的分辨率。
有可能吗?
答案 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),它是一个虚拟像素单位,以与密度无关的方式表达布局尺寸或位置。