Ví dụ này giải thích cách tôi có thể biết khi nào một EditText mất tiêu điểm.
Bước 1 - Tạo một dự án mới trong Android Studio, đi tới Tệp ⇒ Dự án Mới và điền tất cả các chi tiết cần thiết để tạo một dự án mới.
Bước 2 - Thêm mã sau vào res / layout / activity_main.xml.
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="https://schemas.android.com/apk/res/android" android:id="@+id/parent" xmlns:tools="https://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" android:gravity="center" android:orientation="vertical"> <EditText android:id="@+id/editText" android:hint="Loosing focus example" android:layout_width="wrap_content" android:layout_height="wrap_content" > </EditText> <Button android:id="@+id/removeFocus" android:text="Remove Focus" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <Button android:id="@+id/gainFocus" android:text="Gain Focus" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout>
Trong đoạn mã trên, chúng tôi đã sử dụng một văn bản chỉnh sửa và hai nút. nút xóa tiêu điểm sẽ xóa tiêu điểm của văn bản chỉnh sửa và nút khác sẽ lấy tiêu điểm chỉnh sửa văn bản.
Bước 3 - Thêm mã sau vào src / MainActivity.java
package com.example.andy.myapplication; import android.os.Build; import android.os.Bundle; import android.support.annotation.RequiresApi; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.Toast; public class MainActivity extends AppCompatActivity { int view = R.layout.activity_main; EditText editText; Button removeFocus, gainFocus; @RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN) @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(view); editText = findViewById(R.id.editText); removeFocus = findViewById(R.id.removeFocus); gainFocus = findViewById(R.id.gainFocus); gainFocus.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { editText.setFocusableInTouchMode(true); editText.setFocusable(true); } }); removeFocus.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { editText.setFocusableInTouchMode(false); editText.setFocusable(false); } }); editText.setOnFocusChangeListener(new View.OnFocusChangeListener() { @Override public void onFocusChange(View v, boolean hasFocus) { if (!hasFocus) { Toast.makeText(MainActivity.this, "focus loosed", Toast.LENGTH_LONG).show(); } else { Toast.makeText(MainActivity.this, "focused", Toast.LENGTH_LONG).show(); } } }); } }
Trong nút trên, chúng tôi đã loại bỏ tiêu điểm như hình dưới đây -
editText.setFocusableInTouchMode(false); editText.setFocusable(false);
Để đạt được tiêu điểm, hãy sử dụng mã sau -
editText.setFocusableInTouchMode(true); editText.setFocusable(true);
Để tìm trạng thái của tiêu điểm trong văn bản chỉnh sửa như hình dưới đây -
editText.setOnFocusChangeListener(new View.OnFocusChangeListener() { @Override public void onFocusChange(View v, boolean hasFocus) { if (!hasFocus) { Toast.makeText(MainActivity.this, "focus loosed", Toast.LENGTH_LONG).show(); } else { Toast.makeText(MainActivity.this, "focused", Toast.LENGTH_LONG).show(); } } });
Hãy thử chạy ứng dụng của bạn. Tôi giả sử bạn đã kết nối thiết bị Di động Android thực tế với máy tính của mình. Để chạy ứng dụng từ android studio, hãy mở một trong các tệp hoạt động của dự án của bạn và nhấp vào biểu tượng Chạy từ thanh công cụ. Chọn thiết bị di động của bạn làm tùy chọn, sau đó kiểm tra thiết bị di động sẽ hiển thị màn hình mặc định của bạn -
Trong kết quả trên, chúng tôi đã nhấp vào loại bỏ tiêu điểm. nó đang hiển thị một thông báo dưới dạng tiêu điểm bị mất (con trỏ kiểm tra). bây giờ hãy nhấp vào lấy tiêu điểm, nó sẽ lấy tiêu điểm như hình dưới đây -