如何在单击按钮时从编辑文本更改焦点?

How can I change focus from edit text on button click?

我想知道如何从 Edit_text 聚焦到 Button_click

当我单击 Save_Button_1Edit_text_1 上的默认 focus 我想从 Edit_text_1 中删除 focus 并设置 focus Edit_text_2,当我单击 Save_button_2 时,我想从 Edit_text_2 中删除 focus 并在 Edit_text_1 上设置 focus

编辑

这是我的代码-

MainActivty.java

public class MainActivity extends AppCompatActivity {

    EditText et1,et2;
    TextView tv1,tv2;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        et1 = (EditText)findViewById(R.id.et1);
        et2 = (EditText)findViewById(R.id.et2);

        tv1 = (TextView) findViewById(R.id.tv1);
        tv2 = (TextView) findViewById(R.id.tv2);

        tv1.setText("edit");
        tv1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                et1.clearFocus();
                et2.setFocusable(true);

//                String str = et1.getText().toString();
//                Toast msg = Toast.makeText(getBaseContext(),str,Toast.LENGTH_LONG);
//                msg.show();
            }
        });
        tv2.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                et2.clearFocus();
                et1.setFocusable(true);

//                String str = et2.getText().toString();
//                Toast msg = Toast.makeText(getBaseContext(),str,Toast.LENGTH_LONG);
//                msg.show();

            }
        });
    }

}

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

   <LinearLayout
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:orientation="horizontal">
       <EditText
           android:layout_width="match_parent"
           android:layout_height="wrap_content"
           android:id="@+id/et1"
           android:layout_weight="0.1"
           android:focusableInTouchMode="true"
           android:nextFocusDown="@+id/et2"/>
       <TextView
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:id="@+id/tv1"
           android:text="Save"
           android:textSize="20sp"
           android:layout_margin="10dp"/>

   </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/et2"
            android:layout_weight="0.1"
            android:nextFocusUp="@id/et1"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Save"
            android:id="@+id/tv2"
            android:textSize="20sp"
            android:layout_margin="10dp"/>
    </LinearLayout>


</LinearLayout>

谁能帮我提前out.Thanks

试试这个代码:

property in your xml file. For example (for edittext1):

  android:nextFocusDown="@+id/edittext2"

试试这个,

 YOUR_EDITEXT_NAME.requestFocus();

您可以根据自己的需要使用这行代码

editText.requestFocus();
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(editText, InputMethodManager.SHOW_IMPLICIT);

为了清晰的焦点

 editText.clearFocus();