服务器之家:专注于VPS、云服务器配置技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - Android自定义通用标题栏CustomTitleBar

Android自定义通用标题栏CustomTitleBar

2022-08-20 14:21Li的小宝宝 Android

这篇文章主要为大家详细介绍了Android自定义通用标题栏CustomTitleBar,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了Android自定义通用标题栏的具体代码,供大家参考,具体内容如下

1自定义一个public_titlebar.xml文件

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@+id/rootView"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:orientation="horizontal">
 <ImageView
  android:id="@+id/ivLeft"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:src="@drawable/z"/>
 <LinearLayout
  android:layout_width="wrap_content"
  android:layout_height="match_parent"
  android:layout_weight="1">
  <TextView
   android:id="@+id/tvTitle"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:layout_weight="1"
   android:text="tvTitle"/>
  <TextView
   android:id="@+id/tvRight"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:layout_weight="1"
   android:text="tvRight"/>
 </LinearLayout>
</LinearLayout>

2.在values文件夹下新建一个attrs.xml

?
1
2
3
4
5
6
7
8
9
<?xml version="1.0" encoding="utf-8"?>
 <resources>
 <declare-styleable name="CustomerTitleBar">
  <attr name="left_image" format="reference"></attr>
  <attr name="center_text" format="string"></attr>
  <attr name="center_text_color" format="color"></attr>
  <attr name="center_text_size" format="dimension"></attr>
 </declare-styleable>
 </resources>

3.自定义CustomerTitleBar类继承LinearLayout,统一页面标题栏,项目中包括接口回调

 

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
public class CustomerTitleBar extends LinearLayout {
private LinearLayout rootView;
private ImageView ivLeft;
private TextView tvTitle;
private TextView tvRight;
//3.声明回调对象
private CustomerClick leftClick;
 
/**
 * @param context
 */
//在代码中直接new一个Custom View实例的时候,会调用第一个构造函数
public CustomerTitleBar(Context context) {
 this(context,null);
}
 
//在xml布局文件中调用Custom View的时候,会调用第二个构造函数
public CustomerTitleBar(Context context,AttributeSet attrs) {
 this(context, attrs,-1);
}
 
//在xml布局文件中调用Custom View,并且Custom View标签中还有自定义属性时,这里调用的还是第二个构造函数.
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.使用接口回调
   if (leftClick!=null){
    leftClick.onLefClick(v);
   }
  }
 });
}
//4、提供回调对象的set方法
public void setLeftClick(CustomerClick leftClick) {
 this.leftClick = leftClick;
}
//1.定义回调接口
interface CustomerClick{
 void onLefClick(View view);
}
}

4.在布局文件中的引用

?
1
2
3
4
5
6
7
8
<com.cn.jyx.customertitlebar.CustomerTitleBar
 android:id="@+id/ctTitle"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:gravity="center"
 customer:center_text="吐泡泡"
 customer:center_text_color="#ff00ff"
 customer:center_text_size="20sp" />

5.在Activity中的用法

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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();
   }
  });
}
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/jyxlichao/article/details/83961776

延伸 · 阅读

精彩推荐