美文网首页
控件 - EditText

控件 - EditText

作者: C_G__ | 来源:发表于2019-04-24 11:47 被阅读0次

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);
    }
}

相关文章

网友评论

      本文标题:控件 - EditText

      本文链接:https://www.haomeiwen.com/subject/szswgqtx.html