這篇文章將為大家詳細(xì)講解有關(guān)Android中怎么自定義一個(gè)標(biāo)題欄CustomTitleBar,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
創(chuàng)新互聯(lián)主要從事成都做網(wǎng)站、網(wǎng)站設(shè)計(jì)、網(wǎng)頁(yè)設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)龍山,10多年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來(lái)電咨詢建站服務(wù):13518219792
1自定義一個(gè)public_titlebar.xml文件
2.在values文件夾下新建一個(gè)attrs.xml
3.自定義CustomerTitleBar類繼承LinearLayout,統(tǒng)一頁(yè)面標(biāo)題欄,項(xiàng)目中包括接口回調(diào)
public class CustomerTitleBar extends LinearLayout { private LinearLayout rootView; private ImageView ivLeft; private TextView tvTitle; private TextView tvRight; //3.聲明回調(diào)對(duì)象 private CustomerClick leftClick; /** * @param context */ //在代碼中直接new一個(gè)Custom View實(shí)例的時(shí)候,會(huì)調(diào)用第一個(gè)構(gòu)造函數(shù) public CustomerTitleBar(Context context) { this(context,null); } //在xml布局文件中調(diào)用Custom View的時(shí)候,會(huì)調(diào)用第二個(gè)構(gòu)造函數(shù) public CustomerTitleBar(Context context,AttributeSet attrs) { this(context, attrs,-1); } //在xml布局文件中調(diào)用Custom View,并且Custom View標(biāo)簽中還有自定義屬性時(shí),這里調(diào)用的還是第二個(gè)構(gòu)造函數(shù). public CustomerTitleBar(Context context,AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); init(context); initAttrs(context,attrs); initLister(); } private void init(Context context) { rootView= (LinearLayout) View.inflate(context,R.layout.layout_customer_title_bar,this); ivLeft=rootView.findViewById(R.id.ivLeft); tvTitle=rootView.findViewById(R.id.tvTitle); tvRight=rootView.findViewById(R.id.tvRight); } private void initAttrs(Context context, AttributeSet attrs) { TypedArray typedArray=context.obtainStyledAttributes(attrs,R.styleable.CustomerTitleBar); Drawable drawable=typedArray.getDrawable(R.styleable.CustomerTitleBar_left_image); if (drawable!=null){ ivLeft.setImageDrawable(drawable); } CharSequence text = typedArray.getText(R.styleable.CustomerTitleBar_center_text); if (!TextUtils.isEmpty(text)) { tvTitle.setText(text); } int color = typedArray.getColor(R.styleable.CustomerTitleBar_center_text_color, -1); if (color != -1) { tvTitle.setTextColor(color); } float dimension = typedArray.getDimension(R.styleable.CustomerTitleBar_center_text_size, 0f); tvTitle.setTextSize(dimension); } private void initLister() { ivLeft.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { //5.使用接口回調(diào) if (leftClick!=null){ leftClick.onLefClick(v); } } }); } //4、提供回調(diào)對(duì)象的set方法 public void setLeftClick(CustomerClick leftClick) { this.leftClick = leftClick; } //1.定義回調(diào)接口 interface CustomerClick{ void onLefClick(View view); } }
4.在布局文件中的引用
5.在Activity中的用法
public class MainActivity extends AppCompatActivity { private CustomerTitleBar ctTitle; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); ctTitle=findViewById(R.id.ctTitle); //6、使用 ctTitle.setLeftClick(new CustomerTitleBar.CustomerClick() { @Override public void onLefClick(View view) { Toast.makeText(MainActivity.this,"吐泡泡",Toast.LENGTH_LONG).show(); } }); } }
關(guān)于Android中怎么自定義一個(gè)標(biāo)題欄CustomTitleBar就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。