您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關Android如何實現ImageView的selector效果的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
Android ImageView的selector效果實例詳解
在平時開發中如Button我們給它加上selector分別呈現pressed以及normal效果能給我們的用戶體驗上大大增色不少,可是我們當我們是用ImageView來”當作”一個一個”Button”的時候發現直接設置selector卻不起作用,當然此時我們的應用就表現的暗淡了。那我們就只能找到方法來解決這種情況。
首先定義一個selector文件:
<selector xmlns:android="http://schemas.android.com/apk/res/android" > <item android:state_pressed="true"> <shape android:shape="rectangle"> <corners android:radius="5dp" /> <solid android:color="#50000000"/> </shape> </item> <item > <shape android:shape="rectangle"> <corners android:radius="5dp" /> <solid android:color="#00000000"/> </shape> </item> </selector>
第二步,給ImageView的src設置該selector。
<ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_horizontal" android:contentDescription="@null" android:scaleType="centerCrop" android:src="@drawable/share_image_selector" />
然后我們的ImageVIew上要呈現的圖片資源就是用
mImageView.setBackgroundResource(R.drawable.icon);
也就是說我們是給imageview設置backgroundResource,然后給src設置我們設置好的selector,在視覺上我們的selector是顯示在ImageView的上方,當然我們點擊ImageView的時候就是觸發selector,這個時候就會有按下的效果了。
感謝各位的閱讀!關于“Android如何實現ImageView的selector效果”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。