在Android開發(fā)中使用自定義組合控件的例子
一、定義一個XML布局文件
setting_item_view.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="60dip" >
<TextView
android:id="@+id/tv_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginLeft="5dip"
android:layout_marginTop="5dip"
android:textColor="#000000"
android:textSize="20dip" />
<TextView
android:id="@+id/tv_desc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/tv_title"
android:layout_marginLeft="5dip"
android:layout_marginBottom="5dip"
android:textColor="#99000000"
android:textSize="18dip" />
<CheckBox
android:clickable="false"
android:focusable="false"
android:id="@+id/cb_status"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="20dip" />
<View
android:layout_width="fill_parent"
android:layout_height="0.2dip"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_marginLeft="5dip"
android:layout_marginRight="5dip"
android:background="#000000" />
</RelativeLayout>
二、在src/values/attrs.xml中定義屬性
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="TextView">
<attr name="title" format="string" />
<attr name="desc_on" format="string" />
<attr name="desc_off" format="string" />
</declare-styleable>
</resources>
三、自定義一個view繼承自你需要的布局
iniview(Context context)初始化自定義的布局文件
根據(jù)需求自定義一些API方法
public class SettingItemView extends RelativeLayout {
private CheckBox cb_status;
private TextView tv_title;
private TextView tv_desc;
private String title;
private String desc_on;
private String desc_off;
public void iniview(Context context){
View.inflate(context, R.layout.setting_item_view, this);
cb_status = (CheckBox)findViewById(R.id.cb_status);
tv_title = (TextView)findViewById(R.id.tv_title);
tv_desc = (TextView)findViewById(R.id.tv_desc);
}
public SettingItemView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
iniview(context);
}
public SettingItemView(Context context, AttributeSet attrs) {
super(context, attrs);
iniview(context);
title = attrs.getAttributeValue("http://schemas.android.com/apk/res/com.victor.mobilesafe","title");
desc_on = attrs.getAttributeValue("http://schemas.android.com/apk/res/com.victor.mobilesafe","desc_on");
desc_off = attrs.getAttributeValue("http://schemas.android.com/apk/res/com.victor.mobilesafe","desc_off");
tv_title.setText(title);
setDesc(desc_off);
}
public SettingItemView(Context context) {
super(context);
iniview(context);
}
public boolean isChecked(){
return cb_status.isChecked();
}
public void setChecked(boolean checked){
if (checked) {
setDesc(desc_on);
}else{
setDesc(desc_off);
}
cb_status.setChecked(checked);
}
public void setDesc(String text){
tv_desc.setText(text);
}
}
四、在布局文件中使用該自定義組合控件
別忘記聲明自定義命名空間
xmlns:victor="http://schemas.android.com/apk/res/com.victor.mobilesafe"
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:victor="http://schemas.android.com/apk/res/com.victor.mobilesafe"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<com.victor.mobilesafe.ui.SettingItemView
android:id="@+id/siv_update"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
victor:desc_off="自動更新關(guān)閉"
victor:desc_on="自動更新開啟"
victor:title="設(shè)置自動更新" >
</com.victor.mobilesafe.ui.SettingItemView>
</LinearLayout>
總結(jié):
1.自定義一個View 一般來說,繼承相對布局,或者線性布局 ViewGroup;
2.實現(xiàn)父類的構(gòu)造方法。一般來說,需要在構(gòu)造方法里初始化自定義的布局文件;
3.根據(jù)一些需要或者需求,定義一些API方法;
4.根據(jù)需要,自定義控件的屬性,可以參照TextView屬性;
5.自定義命名空間,例如:
xmlns:victor="http://schemas.android.com/apk/res/<包名>" xmlns:victor="http://schemas.android.com/apk/res/com.victor.mobilesafe"
6.自定義我們的屬性,在Res/values/attrs.xml
7.使用我們自定義的屬性
例如:
itheima:title="設(shè)置自動更新" itheima:desc_on="設(shè)置自動更新已經(jīng)開啟" itheima:desc_off="設(shè)置自動更新已經(jīng)關(guān)閉"
8.在我們自定義控件的帶有兩個參數(shù)的構(gòu)造方法里AttributeSet attrs 取出我們的屬性值,關(guān)聯(lián)自定義布局文件對應(yīng)的控件。
- Android自定義控件之自定義組合控件(三)
- Android自定義View之組合控件實現(xiàn)類似電商app頂部欄
- Android自定義控件之組合控件學(xué)習(xí)筆記分享
- Android組合控件實現(xiàn)功能強大的自定義控件
- Android自定義組合控件之自定義下拉刷新和左滑刪除實例代碼
- 實例講解Android應(yīng)用中自定義組合控件的方法
- Android中View自定義組合控件的基本編寫方法
- 探究Android中ListView復(fù)用導(dǎo)致布局錯亂的解決方案
- Android自定義控件之繼承ViewGroup創(chuàng)建新容器
- Android自定義控件之創(chuàng)建可復(fù)用的組合控件
相關(guān)文章
分享安裝Android Studio3.6的經(jīng)驗教訓(xùn)
這篇文章主要介紹了Android Studio3.6的安裝錯誤問題及解決方法,非常值得大家參考,現(xiàn)把整個過程分享到腳本之家平臺,需要的朋友參考下吧2020-02-02
Android中基于XMPP協(xié)議實現(xiàn)IM聊天程序與多人聊天室
這篇文章主要介紹了Android中基于XMPP協(xié)議實現(xiàn)IM聊天程序與多人聊天室的方法,XMPP基于XML數(shù)據(jù)格式傳輸,一般用于即時消息(IM)以及在線現(xiàn)場探測,需要的朋友可以參考下2016-02-02
Android GPS獲取當(dāng)前經(jīng)緯度坐標(biāo)
這篇文章主要為大家詳細(xì)介紹了Android GPS獲取當(dāng)前經(jīng)緯度坐標(biāo),具有一定的參考價值,感興趣的小伙伴們可以參考一下2019-05-05
Android開發(fā)實現(xiàn)切換主題及換膚功能示例
這篇文章主要介紹了Android開發(fā)實現(xiàn)切換主題及換膚功能,涉及Android界面布局與樣式動態(tài)操作相關(guān)實現(xiàn)技巧,需要的朋友可以參考下2019-03-03
Android UI設(shè)計系列之自定義ViewGroup打造通用的關(guān)閉鍵盤小控件ImeObserverLayout(9)
這篇文章主要介紹了Android UI設(shè)計系列之自定義ViewGroup打造通用的關(guān)閉鍵盤小控件ImeObserverLayout,具有一定的實用性和參考價值,感興趣的小伙伴們可以參考一下2016-06-06

