EditText,末尾有十字(x)按钮

时间:2010-10-27 06:02:56

标签: android editbox

有没有办法像iPhone一样在Android编辑框中添加x-graphics 因此,通过单击该x图形,它可以清除编辑框中的所有值

alt text

有没有办法听天气我触摸编辑文本的特定部分 谢谢

2 个答案:

答案 0 :(得分:6)

是的,有办法实现这一目标。

定义像这样的RelativeLayout。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content">
  <EditText android:id="@+id/edittext"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/hello"/>
  <ImageButton android:id="@+id/clear"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/icon"
    android:layout_alignRight="@id/edittext"/>
</RelativeLayout>

现在发生了什么。 ImageButton被绘制在EditText之上。我们将其右边缘设置为等于EditTexts的右边缘,以使其显示在右侧。

现在你必须为你的ImageButton分配一个带有if覆盖方法的OnCLickListener,只需将EditTexts文本设置为这样的空字符串。

EditText editText = null;
ImageButton clear = null;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.clear);

    editText = (EditText) findViewById(R.id.edittext);
    clear = (ImageButton) findViewById(R.id.clear);

    clear.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {
            editText.setText("");
        }
});

}

现在,我们只需告诉我们的ImageViews OnClickListener在点击时重置我们的EditTexts文本。就那么简单。 ;)

当然,我的例子不是使用非常美观的图像,但你可以自己微调图像。这个原则有效。

答案 1 :(得分:0)

你可以下载它,就像iPhone一样

https://github.com/GhOsTTT/editTextXbutton