更改文本颜色微调项目显示

发布于 2024-11-27 13:22:36 字数 720 浏览 0 评论 0原文

我使用了简单的光标适配器来设置微调器的适配器,因为我使用了 sqlite 数据库。但我无法自定义微调器的字体颜色,

图像

这是我的微调器有深红色背景,我想使用简单的光标适配器和微调器 android

代码将文本颜色更改为白色:

    Cursor cursor = dbAdapter.getAllData();

    if(cursor.getCount()>0){
    String[] from = new String[]{"columm_name"};
    // create an array of the display item we want to bind our data to
    int[] to = new int[]{android.R.id.text1};
    SimpleCursorAdapter mAdapter = new SimpleCursorAdapter(this, android.R.layout.simple_spinner_item, cursor, from, to);

    mAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
    spinnerName.setAdapter(mAdapter);

I have used simple cursor adapter to set adapter for spinner as i have used sqlite databse. but i am not able to customize the font color of the spinner,

Image

Here is the Url of the my spinner has dark red background i want to change text color to white using simple cursor adapter with spinner android

code :

    Cursor cursor = dbAdapter.getAllData();

    if(cursor.getCount()>0){
    String[] from = new String[]{"columm_name"};
    // create an array of the display item we want to bind our data to
    int[] to = new int[]{android.R.id.text1};
    SimpleCursorAdapter mAdapter = new SimpleCursorAdapter(this, android.R.layout.simple_spinner_item, cursor, from, to);

    mAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
    spinnerName.setAdapter(mAdapter);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烂人 2024-12-04 13:22:36

我的问题的解决方案希望对其他人有帮助。

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/text1" style="?android:attr/spinnerItemStyle"
    android:singleLine="true" android:layout_width="fill_parent"
    android:layout_height="wrap_content" android:ellipsize="marquee" android:textColor="#ffffff"/>

只需给这个textview android简单光标适配器代替android.R.layout.simple_spinner_item

solution to my question hope it will help others.

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/text1" style="?android:attr/spinnerItemStyle"
    android:singleLine="true" android:layout_width="fill_parent"
    android:layout_height="wrap_content" android:ellipsize="marquee" android:textColor="#ffffff"/>

just give this textview android simple cursor adapter in place of android.R.layout.simple_spinner_item

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文