使用带有浅色主题的 android.R.layout.simple_list_item_1
我了解到,当将 android:entries
与 ListView
一起使用时,它使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你至少有点错了。它使用
com.android.internal.R.layout.simple_list_item_1
。虽然这与 android.R.layout.simple_list_item_1 几乎相同,但它的主题可能不同。另外,切勿使用
getApplicationContext()
。只需使用您的Activity
作为Context
。看看是否有帮助。You are at least sorta wrong. It uses
com.android.internal.R.layout.simple_list_item_1
. While that is nearly identical toandroid.R.layout.simple_list_item_1
, it may be themed differently.Also, never use
getApplicationContext()
. Just use yourActivity
as theContext
. See if that helps.