控件 - EditText

2019-04-24  本文已影响0人  C_G__

EditText 文本框

在文本框里输入内容,并处理此信息。

属性


示例代码

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

上一篇 下一篇

猜你喜欢

热点阅读