我想减少微调框的下拉视图的宽度。
我的下拉视图是CheckedTextView
。
我将宽度设置为CheckedTextView
300dp,但这没有帮助。无论如何,它花了整个时间。
附言我也想发布图片,但是我没有足够的声誉
最佳答案
确保设置的是layout_width
属性而不是width
。
<CheckedTextView
android:id="@+id/myCheckedTextView"
android:layout_width="width_you_want_in_dp"
android:layout_height="wrap_content"/>
您也可以像下面这样以编程方式进行操作:
myCheckedTextView.getLayoutParams().width = width_you_want_in_pixels;
希望这可以帮助!