0

我有一个看起来有点像速度计的自定义视图。

<?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>

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

就像您可以在画布上绘制文本一样,我可以从视图内部以相同的方式添加编辑文本吗?我不这么认为!

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

4

1 回答 1

1

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

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

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

于 2012-07-03T14:32:47.667 回答