如何在编辑文本的边框上书写

时间:2012-03-20 09:11:49

标签: android android-edittext

我需要创建一个编辑文本,其中包含与该文本框相关的一些文本。怎么做。虽然通过HTML有一些方法。但我不知道如何在android中做到这一点。任何身体都可以向我推荐一些东西。为了清楚地看,我提供了我的要求的样本。

任何帮助都将受到赞赏

enter image description here .....

2 个答案:

答案 0 :(得分:3)

你可以通过这种方式实现这样的目标,

    <RelativeLayout android:layout_width="fill_parent"
        android:id="@+id/myLayout1" android:layout_height="wrap_content">

        <EditText android:text="EditText" android:id="@+id/editText1" android:layout_marginTop="5dp" 
        android:layout_width="fill_parent" android:layout_height="wrap_content">
        </EditText>

        <TextView android:text="TextView" android:id="@+id/textView3" android:layout_marginLeft="10dp" android:textColor="#000000" android:background="#FFFFFF"
        android:layout_width="wrap_content" android:layout_height="wrap_content">
        </TextView>

    </RelativeLayout>

Image of my testing

答案 1 :(得分:-1)

我认为使用android:hint对于与编辑文字相关的一些文字也很有用。

但是,它只会在编辑文本为空且在编辑文本中显示文本,但不会显示在此处。

我认为您在此处显示的布局可能需要更长时间才能实施。