Я создал собственный диалог (из файла XML), как показано ниже:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:minWidth="280dip">
<Spinner android:layout_width="fill_parent"
android:layout_height="wrap_content" android:id="@+id/subscription_quality"
android:prompt="@string/subscription_quality_prompt">
</Spinner>
</LinearLayout>
Теперь ширина счетчика равна ширине диалога ("fill_parent
").
Я хотел бы добавить отступы слева и справа, но выглядит как paddingLeft
и paddingRight
не имеет никакого эффекта.