安卓自定义文本组件

背景:在写串口时候发现需要显示时候显示日志,并且还能支持滚动,于是自己动手封装了一个LogTextView组件

下面直接上代码:

java 复制代码
public class LogTextView extends ScrollView {

    private TextView textView;
    private Handler mainHandler; // 用于在主线程中更新UI

    public LogTextView(Context context) {
        super(context);
        this.init(context);
    }

    public LogTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
        this.init(context);
    }

    private void init(Context context) {
        this.textView = new TextView(context);
        this.textView.setTextColor(Color.WHITE);
        this.setOverScrollMode(View.OVER_SCROLL_ALWAYS);
        this.textView.setTextSize(14);
        this.textView.setPadding(16, 0, 16, 0);
        this.textView.setLineSpacing(1.5f, 1.5f); // 设置行间距
        this.textView.setSingleLine(false); // 允许多行显示
        this.textView.setMaxLines(Integer.MAX_VALUE); // 最大行数为无限
        this.textView.setEllipsize(null); // 不使用省略号
        this.textView.setHorizontallyScrolling(false);
        this.addView(this.textView);

        this.mainHandler = new Handler(Looper.getMainLooper());
    }

    public void appendLog(String log) {
        this.mainHandler.post(() -> {
            String currentText = this.textView.getText().toString();
            if (!currentText.isEmpty()) {
                this.textView.setText(currentText + "\n" + log);
            } else {
                this.textView.setText(log); // 如果为空,则直接设置
            }
            this.fullScroll(View.FOCUS_DOWN);
            this.invalidate(); // 强制刷新视图
        });
    }

    public void clearLogs() {
        this.textView.setText("");
    }

    public String getCurrentLogs() {
        return this.textView.getText().toString();
    }

    public void copyToClipboard(Context context) {
        String logContent = this.getCurrentLogs();
        ClipboardManager clipboard = (ClipboardManager) context.getSystemService(Context.CLIPBOARD_SERVICE);
        ClipData clip = ClipData.newPlainText("Logs", logContent);
        clipboard.setPrimaryClip(clip);
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        return super.onTouchEvent(event);
    }
}

用法:

xml布局里面

XML 复制代码
       <com.example.serialportupgrade.view.LogTextView
                android:id="@+id/tv_log"
                android:layout_gravity="top"
                android:layout_width="match_parent"
                android:layout_height="240dp" />

Activity或者Fragment里面调用

java 复制代码
public class MainActivity extends BaseActivity  {
    private LogTextView tv_log;
 @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        this.setContentView(R.layout.activity_main);

    this.tv_log = this.findViewById(R.id.tv_log);
    this.tv_log.setPadding(0, 0, 0, 0);
     this.tv_log.appendLog("欢迎使用\n");

    }
 }

效果图:

相关推荐
澈2074 小时前
C++并查集:高效解决连通性问题
java·c++·算法
郝学胜-神的一滴5 小时前
Qt 入门 01-01:从零基础到商业级客户端实战
开发语言·c++·qt·程序人生·软件构建
测试员周周5 小时前
【Appium 系列】第06节-页面对象实现 — LoginPage 实战
开发语言·前端·人工智能·python·功能测试·appium·测试用例
alexhilton5 小时前
Android上的ZeroMQ:用发布/订阅模式连接Linux服务
android·kotlin·android jetpack
2401_873479405 小时前
运营活动被薅羊毛怎么防?用IP查询+设备指纹联动封堵漏洞
java·网络·tcp/ip·github
ShiJiuD6668889995 小时前
大事件板块一
java
摇滚侠5 小时前
@Autowired 和 @Resource 的区别
java·开发语言
风别鹤5 小时前
Cocos Creator无法识别Android SDK
android
应用市场6 小时前
Android A/B 无缝更新机制深度剖析
android·网络
Wy_编程6 小时前
go语言中的结构体
开发语言·后端·golang