将edittext添加到自定义视图中

时间:2012-07-03 14:29:39

标签: java android

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

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

我想在车速表的中心添加一个edittext。

就像你可以在画布上绘制文字一样,我可以在视图中以相同的方式添加一个edittext吗?我不这么认为!

问题是,如何将此edittext添加到我的自定义视图?

1 个答案:

答案 0 :(得分:1)

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

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

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