使用带有浅色主题的 android.R.layout.simple_list_item_1

发布于 2024-09-05 00:38:13 字数 758 浏览 2 评论 0原文

我了解到,当将 android:entriesListView 一起使用时,它使用 android.R.layout.simple_list_item_1 作为列表项的布局和 android.R.id.text1 作为该布局内 TextView 的 ID。如果我错了,请纠正我。

知道这一点后,我想创建自己的适配器,但使用相同的布局资源,以便提供与平台的 UI 一致性。因此,我尝试了以下操作:

mAdapter = new SimpleCursorAdapter(
    getApplicationContext(),
    android.R.layout.simple_list_item_1,
    mSites,
    new String[] { SitesDatabase.KEY_SITE },
    new int[] { android.R.id.text1 }
);

不幸的是,因为我使用的是浅色主题(我的 < 中有 android:theme="@android:style/Theme.Light" /code>),列表项显示为白色文本,使其不可读。

但是,当使用 android:entries 指定项目的静态列表时,项目会正确显示,并且文本颜色为黑色。

我做错了什么?如何使我的动态适配器使用标准布局但使用浅色主题?

I have learned that when using android:entries with a ListView, it uses android.R.layout.simple_list_item_1 as the layout for a list item and android.R.id.text1 as the ID of the TextView inside that layout. Please, correct me if I'm wrong.

Knowing this, I wanted to create my own adapter but use the same layout resources, in order to provide UI consistency with the platform. Thus, I tried the following:

mAdapter = new SimpleCursorAdapter(
    getApplicationContext(),
    android.R.layout.simple_list_item_1,
    mSites,
    new String[] { SitesDatabase.KEY_SITE },
    new int[] { android.R.id.text1 }
);

Unfortunately, because I am using a light theme (I have android:theme="@android:style/Theme.Light" in my <application>), the list items appear with white text, making them unreadable.

However, when using android:entries to specify a static list of items, the items appear correctly, with black text color.

What am I doing wrong? How can I make my dynamic adapter use the standard layout but work with a light theme?

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

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

发布评论

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

评论(1

天涯离梦残月幽梦 2024-09-12 00:38:13

如有错误,请指正。

你至少有点错了。它使用com.android.internal.R.layout.simple_list_item_1。虽然这与 android.R.layout.simple_list_item_1 几乎相同,但它的主题可能不同。

另外,切勿使用getApplicationContext()。只需使用您的Activity 作为Context。看看是否有帮助。

Please, correct me if I'm wrong.

You are at least sorta wrong. It uses com.android.internal.R.layout.simple_list_item_1. While that is nearly identical to android.R.layout.simple_list_item_1, it may be themed differently.

Also, never use getApplicationContext(). Just use your Activity as the Context. See if that helps.

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