Android(安卓)EditText 控件
EditText
是 TextView
上的覆盖层,它将自己配置为可编辑。它是 TextView
的预定义子类,包含丰富的编辑功能。
EditText 属性
以下是与 EditText
控件相关的重要属性。您可以查看 Android 官方文档,以获取完整的属性列表和可用于更改这些属性的相关方法。
继承自 android.widget.TextView 类:
编号 | 属性 & 描述 |
---|---|
1 | android:autoText 如果设置,则指定此 TextView 具有文本输入方法并自动更正一些常见拼写错误。 |
2 | android:drawableBottom 这是要在文本下方绘制的绘图。 |
3 | android:drawableRight 这是要绘制到文本右侧的绘图。 |
4 | android:editable 如果设置,则指定此 TextView 具有输入方法。 |
5 | android:text 这是要显示的文本。 |
继承自 android.view.View 类:
编号 | 属性 & 描述 |
---|---|
1 | android:background 一个可作为背景使用的绘图。 |
2 | android:content描述 定义了简要描述视图内容的文本。 |
3 | android:id 提供了此视图的标识符名称。 |
4 | android:onClick 这是单击视图时要调用的此视图上下文中方法的名称。 |
5 | android:visibility 这将控制视图的初始可见性。 |
实例
这个实例将带您完成简单的步骤,展示如何使用线性布局和 EditText
创建自己的 Android 应用程序。
步骤 | 描述 |
---|---|
1 | 您将使用 Android studio IDE 创建一个 Android 应用程序,并将其命名为 com.example.demo 包下的 Demo。如H ello World 实例一章中所述 |
2 | 修改 src/MainActivity.java 文件添加一个点击事件。 |
3 | 修改 res/layout/activity_main.xml 文件包含 Android UI 控件。 |
4 | 在 res/values/strings.xml 文件中定义必要的常量。 |
5 | 运行应用程序以启动 Android 模拟器并验证应用程序中所做更改的结果。 |
以下是修改后的主活动文件 src/com.example.demo/MainActivity.java 的内容。此文件可以包括每个基本生命周期方法。
package com.example.demo;
import android.os.Bundle;
import android.app.Activity;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
public class MainActivity extends Activity {
EditText eText;
Button btn;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
eText = (EditText) findViewById(R.id.edittext);
btn = (Button) findViewById(R.id.button);
btn.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
String str = eText.getText().toString();
Toast msg = Toast.makeText(getBaseContext(),str,Toast.LENGTH_LONG);
msg.show();
}
});
}
}
下面是 res/layout/activity_main.xml 文件的内容:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="14dp"
android:layout_marginTop="18dp"
android:text="@string/example_edittext" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textView1"
android:layout_below="@+id/textView1"
android:layout_marginTop="130dp"
android:text="@string/show_the_text" />
<EditText
android:id="@+id/edittext"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/button"
android:layout_below="@+id/textView1"
android:layout_marginTop="61dp"
android:ems="10"
android:text="@string/enter_text" android:inputType="text" />
</RelativeLayout>
下面是 res/values/strings.xml 文件的内容,定义了两个常量:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">demo</string>
<string name="example_edittext">Example showing EditText</string>
<string name="show_the_text">Show the Text</string>
<string name="enter_text">text changes</string>
</resources>
下面是 AndroidManifest.xml 文件内容:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.demo" >
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.demo.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
让我们尝试运行 demo 应用程序。我假设您在进行环境设置时创建了 AVD。要从 Android Studio 运行应用程序,请打开项目的 activity 文件之一,然后单击工具栏上的运行 Eclipse 图标。Android studio 在您的 AVD 上安装应用程序并启动它,如果您的设置和应用程序一切正常,它将显示以下模拟器窗口:
lianxi
建议在编程时使用XML文件中EditText的不同属性来尝试上面的示例,以使EditText具有不同的外观。尝试使其可编辑,更改为字体颜色、字体系列、宽度、文本大小等,然后查看结果。您也可以在一个活动中使用多个EditText控件来尝试上面的示例。