Android如何創(chuàng)建外部lib庫及自定義View

小編給大家分享一下Android如何創(chuàng)建外部lib庫及自定義View,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

成都創(chuàng)新互聯(lián)于2013年成立,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目成都網(wǎng)站建設(shè)、網(wǎng)站建設(shè)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢想脫穎而出為使命,1280元郾城做網(wǎng)站,已為上家服務(wù),為郾城各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:028-86922220

拆分創(chuàng)建 Library

在當(dāng)前 Project 下,F(xiàn)ile -> New Module,選擇 Android Library,進(jìn)行下一步;

Android如何創(chuàng)建外部lib庫及自定義View

設(shè)置具體的 Library/Module/Package 等名稱,注意:Module 名稱與 Library 相匹配默認(rèn)為小寫,需要的話手動(dòng)調(diào)整,進(jìn)行下一步;

Android如何創(chuàng)建外部lib庫及自定義View

此時(shí)在當(dāng)前 Project 中就已經(jīng)創(chuàng)建好 Library;

Android如何創(chuàng)建外部lib庫及自定義View

在當(dāng)前 Project 的 settings.gradle 中就會(huì)自動(dòng)生成創(chuàng)建的 Module;

Tips: :myview 中的 : 代表的與 app 同級(jí)目錄下的 Module。

Android如何創(chuàng)建外部lib庫及自定義View

在當(dāng)前 app 的 build.gradle 中 dependencies{} 中添加 implementation project(':myview') 即可正常接入。

Android如何創(chuàng)建外部lib庫及自定義View

自定義 View

小菜在新建的 Library 中添加一個(gè)自定義按鈕,可以添加配置圖標(biāo)和文字以及背景樣式。因?yàn)橹皇菫榱藴y試 Library Module,所以功能很簡單,實(shí)現(xiàn)方式也很簡單,只是幾個(gè)基本控件的組合。小菜只是簡單的整理一下。

1、新建一個(gè) MyView 繼承自 RelativeLayout,實(shí)現(xiàn)基本的構(gòu)造方法;

2、在構(gòu)造方法中實(shí)現(xiàn)對(duì)布局的添加,控件的綁定以及一些基本的 setXX 方法;

3、至此 MyView 就可以應(yīng)用,但所有但屬性都需要通過 setXX 方法來設(shè)置;這當(dāng)然是不合理的,于是小菜新建一個(gè) attrs 文件,在資源文件中設(shè)置基本的樣式,并在 MyView 的 obtainAttributes 方法中逐一綁定即可;

<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools">
<declare-styleable name="my_view" tools:ignore="MissingDefaultResource">
<!-- 中間文字顏色 -->
<attr name="tv_color" format="color" />
<!-- 中間文字顯隱性 -->
<attr name="tv_show" format="boolean" />
<!-- 中間文字內(nèi)容 -->
<attr name="tv_str" format="string" />
<!-- 中間文字大小 -->
<attr name="tv_size" format="float" />
<!-- 右側(cè)文字顏色 -->
<attr name="right_tv_color" format="color" />
<!-- 右側(cè)文字顯隱性 -->
<attr name="right_tv_show" format="boolean" />
<!-- 右側(cè)文字內(nèi)容 -->
<attr name="right_tv_str" format="string" />
<!-- 右側(cè)文字大小 -->
<attr name="right_tv_size" format="float" />
<!-- 整體背景顏色 -->
<attr name="bg_color" format="color" />
<!-- 整體邊框顏色 -->
<attr name="strok_color" format="color" />
<!-- 整體邊框圓角 -->
<attr name="bg_radius" format="float" />
<!-- 中間圖片顯隱性 -->
<attr name="iv_show" format="boolean" />
<!-- 中間圖片資源 -->
<attr name="iv_src" format="reference" />
</declare-styleable>
</resources>

4、至此,MyView 自定義按鈕以及完成,在 app 中也是正常調(diào)用即可。

public class MyView extends RelativeLayout {

private Context mContext;
private RelativeLayout mRlay;
private ImageView mIv;
private TextView mTv, mRightTv;
GradientDrawable drawable = new GradientDrawable();

int mTvColor, mRightTvColor, mRlayBgColor, mStrokeColor, mIvSrc;
boolean isTvShow, isRightTvShow, isIvShow;
float mTvSize, mRightTvSize, mRadiusSize;
String mTvStr, mRightTvStr;

public MyView(Context context) {
super(context);
mContext = context;
initView();
}

public MyView(Context context, AttributeSet attrs) {
super(context, attrs);
mContext = context;
initView();
obtainAttributes(context,attrs);
}

private void initView() {
LayoutInflater.from(mContext).inflate(R.layout.my_view_btn, this,true);
mRlay = findViewById(R.id.my_view_rly);
mIv = findViewById(R.id.my_view_iv);
mTv = findViewById(R.id.my_view_tv);
mRightTv = findViewById(R.id.my_view_rtv);
}

private void obtainAttributes(Context context, AttributeSet attrs) {
TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.my_view);

mTvColor = ta.getColor(R.styleable.my_view_tv_color, Color.BLACK);
mTv.setTextColor(mTvColor);
mRightTvColor = ta.getColor(R.styleable.my_view_right_tv_color, Color.BLACK);
mRightTv.setTextColor(mRightTvColor);
mRlayBgColor = ta.getColor(R.styleable.my_view_bg_color, Color.WHITE);
mRlay.setBackgroundColor(mRlayBgColor);
mStrokeColor = ta.getColor(R.styleable.my_view_strok_color, Color.BLACK);
isIvShow = ta.getBoolean(R.styleable.my_view_iv_show, true);
mIv.setVisibility(isIvShow?View.VISIBLE:View.GONE);
isRightTvShow = ta.getBoolean(R.styleable.my_view_right_tv_show, true);
mRightTv.setVisibility(isRightTvShow?View.VISIBLE:View.GONE);
isTvShow = ta.getBoolean(R.styleable.my_view_tv_show, true);
mTv.setVisibility(isTvShow?View.VISIBLE:View.GONE);
mTvSize = ta.getFloat(R.styleable.my_view_tv_size, 16.0f);
mTv.setTextSize(mTvSize);
mRightTvSize = ta.getFloat(R.styleable.my_view_right_tv_size, 14.0f);
mRightTv.setTextSize(mRightTvSize);
mRadiusSize = ta.getFloat(R.styleable.my_view_bg_color, 80.0f);
drawable = (GradientDrawable) getResources().getDrawable(R.drawable.user_login_corner_qq);
drawable.setCornerRadius(mRadiusSize);
drawable.setStroke(1, mStrokeColor);
drawable.setColor(mRlayBgColor);
mRlay.setBackground(drawable);
mTvStr = ta.getString(R.styleable.my_view_tv_str);
mTv.setText(mTvStr);
mRightTvStr = ta.getString(R.styleable.my_view_right_tv_str);
mRightTv.setText(mRightTvStr);
mIvSrc = ta.getResourceId(R.styleable.my_view_iv_src, R.mipmap.user_login_icon_qq);
mIv.setImageResource(mIvSrc);

ta.recycle();
}

public void setMyViewTv(String textStr) {
mTv.setText(textStr);
}

public void setMyViewTvColor(int color) {
mTv.setTextColor(color);
}

public void setMyViewTvSize(float size) {
mTv.setTextSize(size);
}

public void isMyViewTvShow(boolean state) {
mTv.setVisibility(state ? View.VISIBLE : View.GONE);
}

public void setMyViewIv(Drawable drawable) {
mIv.setImageDrawable(drawable);
}

public void isMyViewIvShow(boolean state) {
mIv.setVisibility(state ? View.VISIBLE : View.GONE);
}

public void isMyViewRightTvShow(boolean state) {
mRightTv.setVisibility(state ? View.VISIBLE : View.GONE);
}

public void setMyViewRightTvText(String textStr) {
mRightTv.setText(textStr);
}

public void setMyViewRightTvSize(float size) {
mRightTv.setTextSize(size);
}

public void setMyViewRightTvColor(int color) {
mRightTv.setTextColor(color);
}

public void setMyViewBgColor(int color) {
drawable.setColor(color);
mRlay.setBackground(drawable);
}

public void setMyViewBgRadius(float radius) {
drawable.setCornerRadius(radius);
mRlay.setBackground(drawable);
}

public void setMyViewBgStrokeColor(int color) {
drawable.setStroke(1, color);
mRlay.setBackground(drawable);
}

public void setMyViewBgDrawable(Drawable drawable) {
mRlay.setBackground(drawable);
}
}

Android如何創(chuàng)建外部lib庫及自定義View

Tips: attrs.xml 中如果需要用到資源文件,可以使用 format="reference",代表某一個(gè)資源ID。

看完了這篇文章,相信你對(duì)“Android如何創(chuàng)建外部lib庫及自定義View”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!

網(wǎng)頁題目:Android如何創(chuàng)建外部lib庫及自定義View
本文URL:http://bm7419.com/article32/jdehpc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供域名注冊(cè)、網(wǎng)站設(shè)計(jì)、微信小程序、定制網(wǎng)站、網(wǎng)站收錄虛擬主機(jī)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)