我有一个应用程序,它从EditText中获取信息,按下按钮后,将使用其中的字符串。我的应用程序在api23及更高版本上运行良好,但在api22上无法将EditText聚焦。我不明白发生了什么。
我使用android:focusableInTouchMode =“ true” android:focusable =“ true”,尝试使用EditText.setSelected(true),EditText.setFocusable(true);但没有任何结果。应用程序使用样式“ AppTheme” parent =“ Theme.AppCompat.Light.NoActionBar”
XML文件
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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:id="@+id/linearLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/backgr"
tools:context=".MainActivity">
<EditText
android:id="@+id/textForParsing"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:ems="10"
android:hint="@string/hintInRequest"
android:inputType="textPersonName"
android:textAlignment="center"
android:textIsSelectable="true"
android:textSize="30dp"
android:textStyle="italic"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:windowSoftInputMode="adjustPan"
android:focusableInTouchMode="true"
android:focusable="true"
/>
<Button
android:id="@+id/buttonForParsing"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="44dp"
android:text="@string/Find"
android:textSize="18dp"
android:textStyle="bold"
android:layout_marginLeft="30dp"
android:layout_marginRight="30dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textForParsing" />
</androidx.constraintlayout.widget.ConstraintLayout>
Code.java
public class MainActivity extends AppCompatActivity {
EditText editText;
Button button;
String textFromEdit;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
editText = findViewById(R.id.textForParsing);
editText.setSelected(true);
editText.setFocusable(true);
button = findViewById(R.id.buttonForParsing);
View.OnClickListener onClickListener = new View.OnClickListener() {
@Override
public void onClick(View view) {
textFromEdit = editText.getText().toString();
};
button.setOnClickListener(onClickListener);
}
我找到了答案。 API 22中的Edittext存在诸如android:textIsSelectable =“ true”之类的属性的问题。没有它,该应用程序的运行效果很棒。