在 Listview 中,我想创建一个与列表项高度一样宽的方形按钮。我不想设置固定的宽度和高度,因为它应该适用于不同的分辨率。
有可能吗?
使用密度无关像素(dip),它是一个虚拟像素单元,以与密度无关的方式表示布局尺寸或位置。
<Button android:layout_width="fill_parent" .... ></Button>
或者,如果您使用的是 API,我认为您应该能够使用setLayoutParams:
myButton.setLayoutParams(new AbsListView.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));