在我的Android应用程序中,我使用微调器,它在从服务器检索数据的过程中工作,但它太大了。如何更改微调器的大小![在此处输入图像说明] [1]
我需要减小圆形微调器的大小。像中等大小的图标不小。它的尺寸很大。我想知道如何设计自定义圆形微调器
答案 0 :(得分:0)
更改微调器大小更改“android:padding”
您可以像这样制作自定义微调器:
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="20sp"
android:gravity="left"
android:textColor="#FF0000"
android:padding="2dip"
/>
现在使用此文件显示您的微调器项目,如:
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, R.layout.spinner_item,list);