我的问题是,我在白色背景上得到白色文字,如下图所示。当我点击它时,文字变黑了
这是我的布局
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@id/actionbar"
style="@style/SPActionBar" />
<fragment
android:id="@+id/layout_home_list_fragment"
android:name="at.bartinger.smartphonelib.activity.fragment.ProfileListFragment"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<LinearLayout
android:id="@+id/layout_home_adlayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</LinearLayout>
ProfileListFragment扩展了ListFragment,正如我所说整个应用程序使用Theme.Light(在Manifest xml中)
答案 0 :(得分:3)
您是否在SimpleCursorAdapter中使用它:
getActivity().getApplicationContext()
如果是,请替换为
getActivity().getBaseContext()
应该这样做。