I'd like to see the highlight when I click the item in ListView but It doesn't work. I googled so long time to fix this but nothing helped.
I didn't have any issue when I created the list in Android native. Here is the XML of layout that worked on Android native project.
<ListView
android:id="@+id/menuList"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/img_logo_arkema"
android:layout_below="@+id/img_logo_paladin"
android:background="#ffffffff"
android:choiceMode="singleChoice" />
But This doesn't work when I create same ListView in Xamarin.Android project. Here is the XML of layout that doesn't work on Xamarin.Android project.
<ListView
android:id="@+id/menuList"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="@color/colorTopDivider"
android:dividerHeight="@dimen/right_menu_divider_size"
android:choiceMode="singleChoice" />
I am developing the Xamarin.Android in Visual Studio 2015.
thanks for your help!