gpt4 book ai didi

Android - 在 TextView 上显示带边框的文本的方式?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:50:40 26 4
gpt4 key购买 nike

有没有办法在 TextView 上显示带边框的文本?

最佳答案

我建议延长 TextView
参见 Android Custom Component Guide

android_text_border

package samples.test;
public class MyTextView extends TextView {
public MyTextView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}

public MyTextView(Context context, AttributeSet attrs) {
super(context, attrs);
}

public MyTextView(Context context) {
super(context);
}

@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
Rect rect = new Rect();
Paint paint = new Paint();
paint.setStyle(Paint.Style.STROKE);
paint.setColor(Color.WHITE);
paint.setStrokeWidth(3);
getLocalVisibleRect(rect);
canvas.drawRect(rect, paint);
}
}

比在布局 xml 中使用它:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<samples.test.MyTextView android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="@string/hello" />
</LinearLayout>

关于Android - 在 TextView 上显示带边框的文本的方式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2026873/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com