gpt4 book ai didi

java - 将编辑文本添加到自定义 View 中

转载 作者:行者123 更新时间:2023-12-01 15:18:26 26 4
gpt4 key购买 nike

我有一个自定义 View ,看起来有点像速度计。

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

<com.mysite.view.SeekBar_Speedometer
android:id="@+id/slider"
slider:fill_clockwise_color="@color/lightgrey"
slider:fill_anticlockwise_color="@color/blue"
slider:fill_handle_color="@color/green"
slider:fill_handle_width="3"
slider:angle_start="120"
slider:angle_end="60"
slider:fill_start_angle="120"
slider:score_min="0"
slider:score_max="300"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />

</LinearLayout>

我想在速度计的中心添加一个编辑文本。

正如您可以在 Canvas 上绘制文本一样,我可以在 View 中以相同的方式添加编辑文本吗?我不这么认为!

问题是,如何将此编辑文本添加到我的自定义 View 中?

最佳答案

在自定义 View 类中,您可以执行以下操作:

EditText edit = new EditText(context);
addView( edit );

为此,您的自定义 View 必须扩展 ViewGroup(LinearLayout、RelativeLayout、ecc..)

关于java - 将编辑文本添加到自定义 View 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11313130/

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