如何更改微调器文本大小?
我想了解微调器以及如何更改微调器文本大小和微调器文本颜色。
I'd like to learn about spinner and how to change spinner text size and spinner text color.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想了解微调器以及如何更改微调器文本大小和微调器文本颜色。
I'd like to learn about spinner and how to change spinner text size and spinner text color.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
在 Android 中,Spinner 只是一个组合框或列表框。
它允许您查看多个项目并允许您从列表中选择一项。
像这样编辑您的 XML 代码
您的 Java 类代码应如下所示
输出将如下所示
该网站提供带有源代码的示例屏幕截图
http://www.androidpeople.com/android-spinner-example
一般来说我们可以不通过简单的适配器编辑文本大小或文本颜色,在第一个xml文件中,我们声明通过spinnername.findviewbyid(id)找到的旋转器和第一个java文件。我们只是通过xml文件创建自定义适配器,即首先我们创建第二个xml文件,在其中给出我们的要求,如文本视图,图像等,在文本视图中,我们给出文本颜色和文本大小,然后我们在java中创建自定义适配器文件,我们只是通过自定义适配器中的布局膨胀器来膨胀该xml文件,最后我们在微调器中传递该适配器。您的自定义查看微调器被创建。
自定义视图的示例,您可以在其中设置文本大小、文本颜色和图像以及许多其他内容:-
在此创建联系人列表,并使用自定义适配器将以下 xml 文件填充到
contactadapter 文件
xml 文件:-
自定义适配器文件:-
}
我们假设您创建了定义 spinner 的firstxml 文件,最后在firstjava 文件中,您只需添加我们传递自定义适配器的 spinner 代码:
In Android, Spinner is nothing but a combo box or list box.
It lets you viewing multiple items and allows you to select one item from the list.
Edit Your XML code like this
Your Java Class code should look like this
The Output will look like
This site gives sample screen shot with source code
http://www.androidpeople.com/android-spinner-example
Generaly we can't edit the textsize or textcolor through simple adapter,in firstxml file we declare the spinner and firstjava file we find through spinnername.findviewbyid(id).we just create the custom adapter through xml file i.e firstly we create secondxml file in which we gives our requirements like textview,images etc. ,in textview we gives the textcolor and textsize then we create customadapterfile in java and we just inflate that xml file through layout inflater in our custom adapter and finally we pass that adapter in spinner.Your custom viewing spinner is created.
example for custom view where you set the textsize,textcolor and images also and many thing:-
In this a contact list is made and using custom adapter we inflate below xml file in
contactadapter file
xml file :-
custom adapter file:-
}
we assume that you create firstxml file in which spinner is defined,finally in firstjava file you just add the code for spinner where we pass the custom adapter:
hello-spinner 教程非常有用。
http://developer.android.com/guide/tutorials/views/hello -spinner.html
将新的 XML 文件添加到布局文件夹中。
安卓:textColor =“#FF8B1500”
android:gravity="center"/>
将适配器资源更改为新的布局文件:
`
The hello-spinner tutorial is very useful.
http://developer.android.com/guide/tutorials/views/hello-spinner.html
Add a new XML file to your layout folder.
android:textColor="#FF8B1500"
android:gravity="center"/>
Change the adapter resource to your new layout file:
`