android settext方法,Android中EditText setText方法的踩坑实战

  • Post author:
  • Post category:其他


1、平平常常中就这样开始

某一天,我准备做一个搜索功能,这个搜索功能呢大概是在主活动A中,用EditText接收输入,当EditText监听到输入框中内容有变化,跳转到活动B中,活动B中准备有搜索历史记录等等,等在活动B中确定好搜索关键词后,跳回到活动A中,执行搜索,并显示搜索结果……一切顺顺利利,然后呢,懵逼了,我回不了活动A了。

当时的情况大致是这样的,

布局文件:activity_main.xml

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”

android:orientation=”vertical”

tools:context=”.ActivityA”>

android:inputType=”text”

android:singleLine=”true”

android:imeOptions=”actionSearch”

android:id=”@+id/et_search”

android:textSize=”24sp”

android:layout_width=”match_parent”

android:layout_height=”wrap_content”

android:hint=”输入点啥呗”

app:layout_constraintBottom_toBottomOf=”parent”

app:layout_constraintLeft_toLeftOf=”parent”

app:layout_constraintRight_toRightOf=”parent”

app:layout_constraintTop_toTopOf=”parent” />

android:textSize=”24sp”

android:gravity=”center”

android:layout_weight=”1″

android:layout_width=”match_parent”

android:layout_height=”wrap_content”

android:text=”我是主活动啦”/>

活动A:AcitivityA.java

public class ActivityA extends AppCompatActivity {

private EditText searchEditText;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

//找到EditText,添加文本监听

searchEditText=findViewById(R.id.et_search);

searchEditText.addTextChangedListener(new TextWatcher() {

@Override

public vo