我正在尝试(并且失败)创建一个文本左对齐的NumberPicker。
我已尝试修改布局XML并在代码中但无济于事,它总是居中。
这是我的XML,任何人都可以建议我需要改变什么吗?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<NumberPicker
android:id="@+id/numberPicker"
android:layout_width="match_parent"
android:layout_weight="1"
android:layout_height="wrap_content"/>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:text="@string/numberPickerCancel"
android:id="@+id/button1"
android:layout_margin="0dp"
android:padding="0dp"
android:background="@drawable/buttonpress" />
<Button
android:layout_width="fill_parent"
android:layout_weight="1"
android:layout_height="fill_parent"
android:text="@string/numberPickerConfirm"
android:id="@+id/button2"
android:layout_margin="0dp"
android:padding="0dp"
android:background="@drawable/buttonpress" />
</LinearLayout>
<EditText
android:layout_width="fill_parent"
android:layout_height="100dp" />
</LinearLayout>