0

押している間のスクリーンショット

私の Android アプリでは、ユーザーがリスト内の項目を押すと、その項目は正しく青色で強調表示されますが、リスト内の他のすべての項目も灰色で強調表示されます。ユーザーが指を離すと、ハイライトが消えます。これにより、リスト全体に望ましくない「ちらつき」効果が生じます。

ListView から background 属性だけを削除すると、ちらつき効果がなくなります。バックグラウンド属性を保持できるように、別の修正を探しています。

Android17を使用しています。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:padding="8dip"
    android:paddingTop="0dip"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ListView
        android:textColor="@color/my_sky"
        android:background="@drawable/my_btn_white"
        android:id="@+id/my_list"
        android:layout_width="match_parent"
        android:layout_height="0dip"
        android:layout_weight="1"/>

    <Button
        style="@style/MY.Flow.Button"
        android:id="@+id/my_add_choices"
        android:text="@string/my_favorites_add_choices"
        android:layout_marginTop="10dip"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

</LinearLayout>
4

2 に答える 2