控件 - EditText
2019-04-24 本文已影响0人
C_G__
EditText 文本框
在文本框里输入内容,并处理此信息。
属性
- android:id:ID,唯一标识符。
-
android:layout_width:宽。
match_parent:当前控件大小和父控件一样。
wrap_content:当前控件大小刚好包含里边内容。 - android:layout_height:高,同上。
- android:hint:提示信息。
- android:textColorHint:提示信息颜色。
- android:textColor:文本颜色。
- android:maxLines:最大行数。
示例代码
activity_com_edit_text.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".chapter03.EditTextActivity"
android:orientation="vertical">
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<EditText
android:id="@+id/et_edittext"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Type something!"
android:textColorHint="#ccffff"
android:textColor="#111111"
android:maxLines="2"/>
</LinearLayout>
</ScrollView>
</LinearLayout>
EditTextActivity.java
public class EditTextActivity extends MyBaseActivity {
EditText et_edittext;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_com_edit_text);
et_edittext = findViewById(R.id.et_edittext);
}
}