下載本文檔
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
【移動應(yīng)用開發(fā)技術(shù)】Android中怎么通過自定義ImageView實(shí)現(xiàn)點(diǎn)擊圖片切換效果
Android中怎么通過自定義ImageView實(shí)現(xiàn)點(diǎn)擊圖片切換效果,很多新手對此不是很清楚,為了幫助大家解決這個(gè)難題,下面在下將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。private
boolean
flag;
public
void
onClick(View
v){
if(flag){
mImageView.setImageResource(R.drawable.xx1);
}else{
mImageView.setImageResource(R.drawable.xx2);
}
flag
=
!flag;
}筆者連上面的代碼知道寫出來那為什么還要去自定義一個(gè)ImageView了?具體需求:兩個(gè)ImageView之間實(shí)現(xiàn)單選效果我們試想下,目前兩個(gè)ImageView通過上面的代碼可能還好,只要在不同的事件中做出不同的判斷就好了,但如果一但I(xiàn)mageView增多了了?A:你不知道用RadioGroup+RadioButton啊!B:是哦!我現(xiàn)在去試下?!瑽:不行啊,雖然RadioButton可以實(shí)現(xiàn),但不好做適配,我為RadioButton設(shè)置Drawable,不能居中,而且不能隨著RadioButton的大小改變而改變,資源圖片是多大就多大,顯示區(qū)域不夠就不能完全顯示出來。A:…?,額,是嗎?這樣??!那我們就自定義一個(gè)ImageView來實(shí)現(xiàn)吧!B:為什么是自定義ImageView?而不是自定義RadioButton?A:自定義RadioButton實(shí)現(xiàn)ImageView的src屬性比較復(fù)雜(等著正在看這博客的大神實(shí)現(xiàn)),而自定義ImageView來實(shí)現(xiàn)單選的屬性比較好實(shí)現(xiàn)。B:那怎么實(shí)現(xiàn)了?A:看代碼,代碼如下:attrs.xml<為自定義ImageView添加兩個(gè)屬性><?xml
version="1.0"
encoding="utf-8"?>
<resources>
<declare-styleable
name="SelectorImageView">
<attr
name="selector_src"
format="reference"/>//選中的src圖片屬性
<attr
name="checked"
format="boolean"/>
</declare-styleable>
</resources>Class-SelectorImageView<此類實(shí)現(xiàn)了Checkable接口,這里沒什么特殊功能,而只是利用此接口中的方法而已,不實(shí)現(xiàn)我們也可以自己寫>public
class
SelectorImageView
extends
ImageView
implements
Checkable
{
private
boolean
isChecked;
private
Drawable
mSelectorDrawable;
private
Drawable
mDrawable;
public
SelectorImageView(Context
context)
{
this(context,
null);
}
public
SelectorImageView(Context
context,
AttributeSet
attrs)
{
this(context,
attrs,
0);
}
public
SelectorImageView(Context
context,
AttributeSet
attrs,
int
defStyleAttr)
{
super(context,
attrs,
defStyleAttr);
/**獲取默認(rèn)屬性src的Drawable并用成員變量保存*/
mDrawable
=
getDrawable();
final
TypedArray
a
=
context.obtainStyledAttributes(attrs,
R.styleable.SelectorImageView);
/**獲取自定義屬性selector_src的Drawable并用成員變量保存*/
Drawable
d
=
a.getDrawable(R.styleable.SelectorImageView_selector_src);
mSelectorDrawable
=
d;
/**獲取自定義屬性checked的值并用成員變量保存*/
isChecked
=
a.getBoolean(R.styleable.SelectorImageView_checked,
false);
setChecked(isChecked);
if
(d
!=
null
&&
isChecked)
{
/**如果在布局中設(shè)置了selector_src與checked
=
true,我們就要設(shè)置ImageView的圖片為mSelectorDrawable
*/
setImageDrawable(d);
}
a.recycle();
}
@Override
public
void
setImageDrawable(Drawable
drawable)
{
super.setImageDrawable(drawable);
}
@Override
public
void
setChecked(boolean
checked)
{
this.isChecked
=
checked;
}
@Override
public
boolean
isChecked()
{
return
isChecked;
}
@Override
public
void
toggle()
{
/**此處依據(jù)是否選中來設(shè)置不同的圖片*/
if
(isChecked())
{
setImageDrawable(mSelectorDrawable);
}
else
{
setImageDrawable(mDrawable);
}
}
public
void
toggle(boolean
checked){
/**外部通過調(diào)用此方法傳入checked參數(shù),然后把值傳入給setChecked()方法改變當(dāng)前的選中狀態(tài)*/
setChecked(checked);
toggle();
}
}layout.xml<LinearLayout
xmlns:android="/apk/res/android"
xmlns:app="/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.qjay.adf.widget.SelectorImageView
android:id="@+id/iv"
android:layout_width="100dp"
android:layout_height="100dp"
app:selector_src="@mipmap/checked"
android:src="@mipmap/no_checked"/>
</LinearLayout>ActivityCodepublic
class
MainActivity
extends
Activity
{
private
SelectorImageView
iv;
@Override
protected
void
onCreate(Bundle
savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
iv
=
(Select
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 給自己寫一段生日感言
- 2025年度軟件開發(fā)合同:企業(yè)資源規(guī)劃系統(tǒng)開發(fā)與實(shí)施2篇
- 家庭教育與醫(yī)療知識如何照顧高齡父母
- 專業(yè)化公路物流配送服務(wù)協(xié)議范本版B版
- 2024版重型卡車租用合同
- 交易方式2024年度貨物進(jìn)出口合同
- 2024年版:工程貸款合同樣本
- 2025年納米材料研發(fā)及技術(shù)轉(zhuǎn)讓合同范本3篇
- 2024版茶樓經(jīng)營權(quán)承包合同3篇
- 2024版交通事故損害賠償簡易合同
- 基礎(chǔ)會計(jì)(第7版)ppt課件完整版
- Q∕SY 1206.1-2009 油氣管道通信系統(tǒng)通用技術(shù)規(guī)范 第1部分:光傳輸系統(tǒng)
- 汽車4S店八大運(yùn)營業(yè)績指標(biāo)管控培訓(xùn)_89頁
- 設(shè)備安裝、調(diào)試及驗(yàn)收質(zhì)量保證措施
- 火力發(fā)電廠生產(chǎn)技術(shù)管理導(dǎo)則
- 汽輪機(jī)葉片振動與分析
- 地質(zhì)工作個(gè)人述職報(bào)告三篇
- 產(chǎn)品可追溯流程圖圖
- 形意拳九歌八法釋意
- 中國主要機(jī)場管制席位及頻率
- 電站壓力式除氧器安全技術(shù)規(guī)定
評論
0/150
提交評論