我想知道如何從Edit_text
關注Button_click
。如何從點擊按鈕上的編輯文本更改焦點?
默認focus
上Edit_text_1
當我點擊Save_Button_1
我想從Edit_text_1
刪除focus
和Edit_text_2
設置focus
,當我點擊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>
任何人都可以幫助我。感謝您的提前。
thanx它工作正常 – Sourabh