所以在附加的屏幕截图和代码示例中,您可以看到我的自定义微调器。如你所见,无论我做什么,我的短信都被切断了。九个补丁的图像设置正确,上面也有文本填充。我对每件事都是对的,我完全不知所措…
自定义微调器
<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/spinner"
android:textColor="#555"
android:textSize="22sp"
android:textStyle="bold"
android:typeface="normal"
android:layout_width="wrap_content"
android:layout_height="40sp"
android:gravity="center_vertical|left"
android:singleLine="true" />
实现自定义微调器
<Spinner
android:id="@+id/spinner_both20"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/b_both20"
android:layout_alignTop="@+id/b_both20"
android:layout_marginLeft="4sp"
android:layout_marginRight="5sp"
android:layout_toRightOf="@+id/b_both20"
android:background="@drawable/buttons"
android:padding="20sp" />
爪哇
ArrayAdapter<CharSequence> aBoth = ArrayAdapter
.createFromResource(getActivity().getApplicationContext(),
R.array.d20both, R.layout.spinner_settings)
花这么多时间在这么简单的事情上,我真是太沮丧了。任何帮助都会动摇!
最佳答案
填充将剪切到您的内部文本。