現在Holo.LightテーマでカスタムListViewアダプタを使用する際に問題が発生しています。アクティビティやフラグメント内では、任意のTextViewがテーマの通常の色(textColorPrimary
)で表示されます。ただし、カスタムListAdapter内のテキストには、デフォルトのHoloテーマのtextColorPrimary
が使用されているため、効果的にテキストを読むことができません。ここで フラグメント内のカスタムListViewが親テーマに準拠していません
list_main_menu.xml - ListAdapterの行レイアウト
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/imgIcon"
android:layout_height="48dip"
android:layout_width="48dip"
android:src="@drawable/ic_launcher"
/>
<TextView
android:id="@+id/txtFirstLine"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/imgIcon"
android:text="Line 1"
android:textSize="12pt"
/>
<TextView
android:id="@+id/txtSecondLine"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/imgIcon"
android:layout_below="@id/txtFirstLine"
android:text="Line 2"
/>
</RelativeLayout>
注:私が現在抱えているテキストを可読にするにはandroid:textColor="?android:attr/textColorPrimaryInverse"
を使用してください。
fragment_main_menu.xml - メインメニューフラグメント。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/txtWelcome"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Username"
android:textSize="18sp"
/>
<ListView
android:id="@id/android:list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</LinearLayout>
AndroidManifext.xml私は現在、任意のカスタムスタイルを使用していないよ
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.michaeldodd.treasurehunter"
android:versionCode="1"
android:versionName="0.0.1" >
<uses-sdk android:minSdkVersion="11" />
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:label="@string/app_name" android:name=".gui.Login"
android:theme="@android:style/Theme.Holo.Light">
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".gui.Home" android:theme="@android:style/Theme.Holo.Light" />
<activity android:name=".gui.UserProfile" android:theme="@android:style/Theme.Holo.Light" />
<activity android:name=".gui.MapList" android:theme="@android:style/Theme.Holo.Light" />
</application>
</manifest>
。読んでいただきありがとうございます。有用なコメントをいただければ幸いです。
編集1: リクエストされたスクリーンショットがあります。 これは私がテキストの色を指定しない場合、それはどのように見えるかで、それはホロダーク
のデフォルトのテキストの色を使用しているように見える手動android:textColor="?android:attr/textColorPrimaryInverse"
を指定すると、この結果を与えるが、私は使用しての不安ですこのような回避策。
スクリーンショットが追加されました。 –