如何在 C# 中向我的安卓应用程序添加明文字段按钮
本文关键字:应用程序 添加 明文 按钮 字段 我的 | 更新日期: 2023-09-27 17:55:22
我是一个非常编程的初学者......但我正在尝试开发一个小型Android应用程序,使用Monodroid来存储联系人并从地址簿中呼叫联系人。
请原谅我,如果这很简单,但我有一个文本字段和一个按钮,两者都在我的资源XML文件中,我希望能够通过单击按钮清除文本框中的文本,该按钮显然被称为"清除"..非常感谢所有帮助,因为我期待了解更多信息。
假设您有以下布局,我认为它与您已经拥有的布局相似:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/TextField"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<Button
android:id="@+id/Clear"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Clear"/>
</LinearLayout>
然后在活动代码中,您可以执行以下操作:
var clear = FindViewById<Button>(Resource.Id.Clear);
var textField = FindViewById<TextView>(Resource.Id.TextField);
clear.Click += (src, args) =>
{
textField.Text = "";
};
这个怎么样?
Button ClearText=(Button) findViewById(R.id.ClearText);
ClearText.setOnClickListener(new View.OnClickListener(){
public void onClick(View v){
EditText textedit=(EditText) findViewById(R.id.textedit);
textedit.setText("");
}
});
清除必须注册为布局文件中按钮的 onclick 处理程序,如下所示
<ImageButton android:id="@+id/ClearText"
android:text="@string/ClearText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
**android:onClick="clear"**
android:src="@drawable/clear"
/>