当前位置:   article > 正文

android自定义view (UI组件)_android 组合自定义view

android 组合自定义view

为什么要自定义view

在Android开发中有很多业务场景,原生的控件是无法满足应用,并且经常也会遇到一个UI在多处 重复使用情况,那么就需要通过自定义View的方式来实现这些UI效果。 作为一个Android开发工程师自定义View属于一个必备技能。

android自定义view几种方式

自定义View的实现方式有以下几种: 组合控件,继承控件,自绘控件 详细可分为:自定义组合控件,继承系统View控件,继承系统ViewGroup,自绘View控件,自绘 ViewGroup控件

自定义组合控件

组合控件就是将多个控件组合成一个新的控件,可以重复使用。 应用场景:在项目中经常会遇到一些比较复杂的UI块需要用在多处使用,那么我们就可以通过五大布局 和基本控件组合成一个新的布局View,这样就可以方便的将该UI用在项目的不同页面中,比如一个标题 栏。这种方式比较简单,只要通过布局文件实现相应的UI,然后将该UI加到适合的五大布局中即可。

自定义组合控件的使用步骤

1. 编写布局文件

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:background="#8B8BCC" >
  6. <Button
  7. android:id="@+id/left_btn"
  8. android:layout_width="30dp"
  9. android:layout_height="30dp"
  10. android:layout_centerVertical="true"
  11. android:layout_margin="5dp"
  12. android:background="@mipmap/back1_64" />
  13. <TextView
  14. android:id="@+id/title_tv"
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:layout_centerInParent="true"
  18. android:text="这是标题"
  19. android:textColor="#ffffff"
  20. android:textSize="20sp" />
  21. </RelativeLayout>

2. 实现构造方法

3. 初始化UI

4. 提供对外的方法

  1. //因为我们的布局采用RelativeLayout,所以这里继承RelativeLayout。
  2. public class HeaderView extends RelativeLayout {
  3. private Button left_btn;
  4. private TextView title_tv;
  5. private RelativeLayout layout_root;
  6. public HeaderView(Context context) {
  7. super(context);
  8. }
  9. public HeaderView(Context context, AttributeSet attrs) {
  10. super(context, attrs);
  11. initView(context);
  12. }
  13. public HeaderView(Context context, AttributeSet attrs, int defStyleAttr)
  14. {
  15. super(context, attrs, defStyleAttr);
  16. }
  17. //初始化UI,可根据业务需求设置默认值。
  18. private void initView(Context context) {
  19. LayoutInflater.from(context).inflate(R.layout.view_header, this,
  20. true);
  21. left_btn = findViewById(R.id.left_btn);
  22. title_tv = findViewById(R.id.title_tv);
  23. layout_root = findViewById(R.id.header_root_layout);
  24. layout_root.setBackgroundColor(Color.BLACK);
  25. title_tv.setTextColor(Color.WHITE);
  26. }
  27. //设置标题文字的方法
  28. private void setTitle(String title) {
  29. if (!TextUtils.isEmpty(title)) {
  30. title_tv.setText(title);
  31. }
  32. }
  33. //对左边按钮设置事件的方法
  34. private void setLeftListener(OnClickListener onClickListener) {
  35. left_btn.setOnClickListener(onClickListener);
  36. }
  37. }

5. 在布局当中引用该控件

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:orientation="vertical"
  8. tools:context=".MainActivity2">
  9. <com.hopu.customviewdemo.view.HeaderView
  10. android:id="@+id/title_bar"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content" />
  13. </LinearLayout>

6. activity中使用

  1. public class MainActivity2 extends AppCompatActivity {
  2. private HeaderView title_bar;
  3. @Override
  4. protected void onCreate(Bundle savedInstanceState) {
  5. super.onCreate(savedInstanceState);
  6. setContentView(R.layout.activity_main2);
  7. title_bar = findViewById(R.id.title_bar);
  8. title_bar.setLeftListener(new View.OnClickListener() {
  9. @Override
  10. public void onClick(View v) {
  11. Toast.makeText(MainActivity2.this, "左侧按钮被点击",
  12. Toast.LENGTH_SHORT).show();
  13. }
  14. });
  15. }
  16. }

继承系统控件

通过继承系统控件(View子类控件或ViewGroup子类控件)来完成自定义View,一般是希望在原 有系统控件基础上做一些修饰性的修改,而不会做大幅度的改动,如在TextView的文字下方添加下 划线,在LinearLayout布局中加一个蒙板等。这种方式往往都会复用系统控件的onMeasure和 onLayout方法,而只需要重写onDraw方法,在其中绘制一些需要的内容。 下面会分别继承View类控件和ViewGroup类控件来举例说明

继承View类系统控件

继承View类系统控件使用步骤

1. 继承View控件,并重写onDraw方法

2. 在布局文件中调用

为在TextView文字下方显示红色下划线,其基本步骤如下:

1. 继承View控件,并重写onDraw方法

  1. public class UnderlineTextView extends
  2. androidx.appcompat.widget.AppCompatTextView {
  3. public UnderlineTextView(Context context, @Nullable AttributeSet attrs)
  4. {
  5. super(context, attrs);
  6. }
  7. @Override
  8. protected void onDraw(Canvas canvas) {
  9. super.onDraw(canvas);
  10. Paint paint = new Paint();
  11. paint.setColor(Color.RED);
  12. paint.setStrokeWidth(5);
  13. int width = getWidth();
  14. int height = getBaseline();
  15. canvas.drawLine(0,height,width,height,paint);
  16. }
  17. }

2. 在布局文件中调用

就像使用一个普通TextView一样使用UnderlineTextView。

  1. <com.hopu.customviewdemo.view.UnderlineTextView
  2. android:layout_width="match_parent"
  3. android:layout_height="wrap_content"
  4. android:text="张三"/>

继承ViewGroup类系统控件

继承ViewGroup类系统控件使用步骤

1. 继承ViewGroup类系统控件

2. 在布局文件中调用

在layout布局上添加一个浅红色的半透明蒙板,这种需求在工作中也是非常常见的。

1. 继承ViewGroup类系统控件

  1. public class ForegroundLinearLayout extends LinearLayout{
  2. public ForegroundLinearLayout(Context context, @Nullable AttributeSet
  3. attrs) {
  4. super(context, attrs);
  5. }
  6. @Override
  7. protected void dispatchDraw(Canvas canvas) {
  8. super.dispatchDraw(canvas);
  9. canvas.drawColor(Color.parseColor("#50FF0000"));
  10. }
  11. }

2.在布局文件中调用 对ForegroundLinearLayout的使用,就和使用其父类LinearLayout一样。

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5. <com.hopu.customviewdemo.view.ForegroundLinearLayout
  6. android:layout_width="match_parent"
  7. android:layout_height="200dp"
  8. android:layout_centerInParent="true"
  9. android:gravity="center">
  10. <TextView
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:layout_centerInParent="true"
  14. android:text="Hello World!"
  15. android:textColor="@android:color/black"
  16. android:textSize="50dp" />
  17. </com.hopu.customviewdemo.view.ForegroundLinearLayout>
  18. </RelativeLayout>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/759635
推荐阅读
相关标签
  

闽ICP备14008679号