Подтвердить что ты не робот

Выбранный элемент меню GridView Android

My GridView Not Show Нажмите и настроил селектор Мой код ниже.

myhomegrid.xml

<GridView xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/gwMenu"
android:layout_width="fill_parent" 
android:layout_height="fill_parent"
android:numColumns="auto_fit"
android:verticalSpacing="10dp"
android:horizontalSpacing="10dp"
android:columnWidth="90dp"
android:stretchMode="columnWidth"
android:gravity="center" 
android:drawSelectorOnTop="true"
android:listSelector="@layout/grid_selector"

     />

grid_selector.xml

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@drawable/pressedback" />
<item android:state_window_focused="false" android:drawable="@drawable/focusedback" />
<item android:state_window_focused="true" android:drawable="@drawable/focusedback" />
</selector>

menu.xml

<LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@+id/widget44"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:orientation="vertical"
android:layout_x="201px"
 android:layout_y="165px"
 android:gravity="center_horizontal">
 <ImageView
 android:id="@+id/icon_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
 </ImageView>
<TextView
android:id="@+id/icon_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView"
android:gravity="center_horizontal"
android:textColor="#ffffff"
android:textColorHighlight="#656565">
</TextView>
</LinearLayout>

Фокусированное изображение

enter image description here

Нажмите

enter image description here

Я хочу сделать селектор, как показано ниже:

enter image description here

4b9b3361

Ответ 1

Вы должны поместить свой grid_selector.xml в папку с возможностью переноса, а затем ссылаться на него:

android:listSelector="@drawable/grid_selector"

Ответ 2

Вы должны исправить свой селектор, как этот

<selector xmlns:android="http://schemas.android.com/apk/res/android">
   <item android:state_pressed="true" android:drawable="@drawable/pressedback" />
   <item android:state_focused="true" android:drawable="@drawable/focusedback" />
   <item android:state_selected="true" android:drawable="@drawable/focusedback" />
</selector>

UPD: Плохо, вам не нужны интерактивные и настраиваемые атрибуты для GridView