当前位置:   article > 正文

Android基于监听的事件处理4种方式实现简单文本编辑器_1、利用基于监听的事件处理方式实现简单文本编辑器,分别实现字体颜色、大小样式变

1、利用基于监听的事件处理方式实现简单文本编辑器,分别实现字体颜色、大小样式变

效果图:
在这里插入图片描述

xml部分:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <TextView
        android:id="@+id/title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="我是XXX"
        android:gravity="center"
        android:textSize="20sp"
        android:layout_margin="30dp"
        />
    <LinearLayout

        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="大小:"
            android:textSize="20sp"
            android:layout_margin="10dp"/>

        <Button
            android:id="@+id/bt11"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="增大"
            android:textSize="20sp"
            android:layout_margin="10dp"/>

        <Button
            android:id="@+id/bt12"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="减小"
            android:textSize="20sp"
            android:layout_margin="10dp"/>

    </LinearLayout>

    <LinearLayout

        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="颜色:"
            android:textSize="20sp"
            android:layout_margin="10dp"/>

        <Button
            android:id="@+id/bt21"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="红色"
            android:textSize="20sp"
            android:layout_margin="10dp"/>
        <Button
            android:id="@+id/bt22"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="绿色"
            android:textSize="20sp"
            android:layout_margin="10dp"/>
        <Button
            android:id="@+id/bt23"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="蓝色"
            android:textSize="20sp"
            android:layout_margin="10dp"/>

    </LinearLayout>

    <LinearLayout

        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="样式:"
            android:textSize="20sp"
            android:layout_margin="10dp"/>

        <Button
            android:id="@+id/bt31"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="加粗"
            android:textSize="20sp"
            android:layout_margin="10dp"/>
        <Button
            android:id="@+id/bt32"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="倾斜"
            android:textSize="20sp"
            android:layout_margin="10dp"/>
        <Button
            android:id="@+id/bt33"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="默认"
            android:textSize="20sp"
            android:layout_margin="10dp"/>

    </LinearLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="内容:"
            android:textSize="20sp"
            android:layout_margin="10dp"/>

        <EditText
            android:id="@+id/et"
            android:layout_width="300dp"
            android:layout_height="wrap_content"
            android:layout_margin="10dp"
            android:maxLines="1"
            />
    </LinearLayout>
    <Button
        android:id="@+id/bt41"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="保存文本"
        android:textSize="20sp"
        android:layout_gravity="center"
        android:layout_margin="10dp"/>
</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
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149

MainActivity部分:

public class MainActivity extends AppCompatActivity implements View.OnClickListener {
    //字体大小范围
    private int[] SizeList={10,20,30};
    //初始字体大小
    int SizeStar=1;
    private TextView tv;
    private EditText et;
    private Button bt11,bt12,bt21,bt22,bt23,bt31,bt32,bt33,bt41;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.test5_1);
        tv=(TextView)findViewById(R.id.title);//文本

        //内部类( 字体大小)
        //第一排按钮
        bt11=(Button)findViewById(R.id.bt11) ;
        bt12=(Button)findViewById(R.id.bt12) ;
            //创建内部类实现
        bt11.setOnClickListener(new Bt11());
        bt12.setOnClickListener(new Bt12());

        //外部类(字体颜色)
        //第二排按钮
        bt21=(Button)findViewById(R.id.bt21);
        bt22=(Button)findViewById(R.id.bt22);
        bt23=(Button)findViewById(R.id.bt23);
        //注册监听器
        bt21.setOnClickListener(new Button2Listener(tv));
        bt22.setOnClickListener(new Button2Listener(tv));
        bt23.setOnClickListener(new Button2Listener(tv));

        //类自身(字体样式)
        //第三排按钮
        bt31=(Button)findViewById(R.id.bt31);
        bt32=(Button)findViewById(R.id.bt32);
        bt33=(Button)findViewById(R.id.bt33);
        //绑定
        bt31.setOnClickListener(this);
        bt32.setOnClickListener(this);
        bt33.setOnClickListener(this);

        //匿名内部类(文本内容)
        //输入框和保存按钮
        bt41=(Button) findViewById(R.id.bt41);//保存文本按钮
        et=(EditText) findViewById(R.id.et);//文本输入框

        bt41.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                tv.setText(et.getText());
                Log.i("log","匿名内部类");
            }
        });

    }



    //创建内部类实现
    class Bt11 implements View.OnClickListener {//内部类创建
            @SuppressLint("ResourceAsColor")
            @Override
            public void onClick(View v) {//重写onClick()
                SizeStar++;
                tv.setTextSize(SizeList[SizeStar%3]);
            }
        }
    class Bt12 implements View.OnClickListener {//内部类创建
        @Override
        public void onClick(View v) {//重写onClick()
            SizeStar--;
            tv.setTextSize(SizeList[SizeStar%3]);

        }
    }

//类自身(字体样式)
//实现view.OnClickListener接口后重写方法
@Override
public void onClick(View v) {
        switch (v.getId()){
            case R.id.bt31://加粗
                        tv.setTypeface(null, Typeface.BOLD);//加粗
                break;
            case R.id.bt32://倾斜
                         tv.setTypeface(null, Typeface.ITALIC);//倾斜
                break;
            case R.id.bt33://默认
                        tv.setTypeface(null,Typeface.NORMAL);

                break;
        }
}
  • 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
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94

外部类Button2Listener:

public class Button2Listener implements View.OnClickListener {
    private TextView tv;
    //构造方法传入文本框tv
    public Button2Listener(TextView tv){
        this.tv=tv;
    }
    //重写onClick方法
    @Override
    public void onClick(View v) {
        //区分不同颜色按钮的点击
        switch (v.getId()){
            case R.id.bt21:
                tv.setTextColor(Color.RED);
                Log.i("log","红色");
                break;
            case R.id.bt22:
                tv.setTextColor(Color.GREEN);
                Log.i("log","绿色");
                break;
            case R.id.bt23:
                tv.setTextColor(Color.BLUE);
                Log.i("log","蓝色");
                break;
            default:break;

        }
    }
}

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

闽ICP备14008679号