这是我的原始数字选择器,它垂直显示。
我想让它水平显示,它将显示左右按钮而不是上下按钮。但它不起作用。它看起来仍然像垂直的。
这是我的代码。
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_picker);
String[] nums = new String[21];
for(int i=0; i<nums.length; i++)
nums[i] = Integer.toString(i*5);
NumberPicker np = (NumberPicker) findViewById(R.id.np);
np.setMaxValue(nums.length-1);
np.setMinValue(0);
np.setWrapSelectorWheel(false);
np.setDisplayedValues(nums);
这是我的 np.xml 代码
<NumberPicker
android:id="@+id/np"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:width="100dip" />