這個文章純屬是從本身屢次摔倒的經歷中讓我不得不整理起來。其實,感受每次都不知道怎麼解決這個問題,可是,下次遇到的時候仍是有被卡住了,我相信這裏還有不少人跟我同樣。android
其實在Android中,這個問題是很常見的,可是,仍是有不少沒有的到最根本的解決。app
我不是一個理論知識家,只是記下我以爲須要記下的東西,固然,這裏我確定但願能幫到更多的人。謝謝佈局
EG:spa
這裏有一個xml寫的是須要填充內容的listview或者gridview(A),而後,確定這裏還會有另一個xml用來佈局listview裏面的樣式。我通常以cell結尾(B)。code
這裏,你會發現若是在B裏面咱們有得到焦點的控件的時候,對於A裏面的控件在實現onitemclicklistener的時候,根本沒有執行。xml
其實,是由於他的點擊事件已經被他本身佈局裏面的控件給獲取了,因此,咱們應該在B的大布局裏面加上: android:descendantFocusability="blocksDescendants",blog
beforeDescendants:viewgroup會優先其子類控件而獲取到焦點
afterDescendants:viewgroup只有當其子類控件不須要獲取焦點時才獲取焦點
blocksDescendants:viewgroup會覆蓋子類控件而直接得到焦點
而後,在不想他搶走焦點的控件上面寫好這兩句就okay:three
android:clickable="true"
android:focusable="false"事件
其它的跟Listview同風格的照作就好:ip
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:lhl="http://schemas.android.com/apk/res/com.childhos.childhos" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/layout_game_list" android:layout_width="match_parent" android:layout_height="match_parent" android:descendantFocusability="blocksDescendants" android:orientation="horizontal" > <com.lhl.view.RoundImageView android:id="@+id/image_game" android:layout_width="@dimen/btn_one_height" android:layout_height="@dimen/btn_one_height" android:layout_gravity="center" android:layout_margin="10dip" android:src="@drawable/image_game_one" lhl:borderRadius="15dp" lhl:type="round" /> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:orientation="vertical" > <TextView android:id="@+id/text_name" style="@style/TextStyle" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="#000" android:textSize="@dimen/text_four" /> <TextView android:id="@+id/text_down_time" style="@style/TextStyle" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="#000" android:textSize="@dimen/text_four" /> <TextView android:id="@+id/text_app_size" style="@style/TextStyle" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="#000" android:textSize="@dimen/text_four" /> </LinearLayout> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="right|center_vertical" android:layout_weight="1" android:gravity="right|center_vertical" android:orientation="vertical" > <TextView android:id="@+id/btn_install" android:layout_width="@dimen/btn_one_height" android:layout_height="30dip" android:layout_gravity="right|center_vertical" android:layout_margin="10dip" android:background="@drawable/border_sel" android:clickable="true" android:focusable="false" android:gravity="center" android:text="安裝" android:textColor="#398de3" android:textSize="@dimen/text_three" /> </LinearLayout> </LinearLayout>
謝謝!紅牛,加油!