私はEditText-Fieldを持っていて、それにOnFocusChangeListenerを設定しています。フォーカスがなくなると、メソッドが呼び出され、EditTextの値とデータベース内の値が照合されます。メソッドの戻り値がtrueの場合、トーストが表示され、フォーカスはEditTextに戻ります。メソッドの戻り値がfalseになるまで、フォーカスは常にEditTextに戻り、キーボードが表示されます。
編集:私は、私は私の本当の問題をまだ完全には明らかにしていないと思います:EditTextの値が "checkLiganame(liganame)"メソッドになる値に編集されるまで、スクリーン上の他の項目は編集できないはずです"falseを返します。編集可能なのはEditTextフィールドだけです。
これが私のコードです(これは私にはうまくいきません):
final EditText Liganame = (EditText) findViewById(R.id.liganame);
Liganame.setOnFocusChangeListener(new OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (!hasFocus) {
String liganame = Liganame.getText().toString();
if (checkLiganame(liganame)) {
Toast toast = Toast.makeText(CreateTableActivity.this,
"Dieser Liganame ist bereits vergeben",
Toast.LENGTH_SHORT);
toast.show();
Liganame.requestFocus();
}
}
そして方法:
public boolean checkLiganame(String liganame) {
boolean found = false;
DatabaseHelper databaseHelper = new DatabaseHelper(this);
SQLiteDatabase db = databaseHelper.getReadableDatabase();
Cursor cursor = db.query("liga", new String[] { "liganame" },
"liganame = '" + liganame + "'", null, null, null, null);
Log.i("Liganame: ", String.valueOf(cursor));
db.close();
if (cursor != null) {
found = true;
}
return found;
}
このコードは次のような結果になります:EditTextがフォーカスを失った後、フォーカスはEditTextに戻りますが、私はもうテキストを編集することができません。
編集2:私のコードを変更しました。シナリオ:
最初のEditTextをクリックして、そこにStringを入れます。これはすでにデータベースにあります。乾杯が見えています。今私はもう自分の文字列を編集することはできません。キーボードの「次へ」をクリックすると、最初のEditTextにフォーカスが移ります。文字列を編集しようとしましたが、何も起こりません。代わりに、私の新しい文字列が2番目のEditTextに表示されています。私は自分のデバイスの戻る矢印をクリックして、1番目と2番目のEditTextをクリックします - >キーボードが表示されていません。
これが私の新しいコードです。
public class CreateTableActivity extends Activity implements
OnFocusChangeListener {
private EditText Liganame, Mannschaftsanzahl;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.create_league);
Liganame = (EditText) findViewById(R.id.liganame);
Liganame.setOnFocusChangeListener(this);
Mannschaftsanzahl = (EditText) findViewById(R.id.mannschaftsanzahl);
Mannschaftsanzahl.setOnFocusChangeListener(this);
final Button save_button = (Button) findViewById(R.id.create_tabelle_speichern_button);
OnClickListener mCorkyListener = new OnClickListener() {
public void onClick(View v) {
ButtonClick();
}
};
save_button.setOnClickListener(mCorkyListener);
}
@Override
public void onFocusChange(View v, boolean hasFocus) {
String liganame = Liganame.getText().toString();
if (checkLiganame(liganame)) {
if (Liganame.requestFocus()) {
getWindow()
.setSoftInputMode(
WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
Mannschaftsanzahl.clearFocus();
Toast.makeText(CreateTableActivity.this,
"Dieser Liganame ist bereits vergeben",
Toast.LENGTH_SHORT).show();
}
}
}
この行をあなたのonCreate()
に置くだけです。
editText.requestFocus();
それは私のために働く、それが助けることを願っています
フォーカスを要求するだけではキーボードを表示できません。
フォーカスを取得してキーボードを表示するには、次のように書きます。
if(myEditText.requestFocus()) {
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
}
編集:checkLiganameメソッドが追加された後に答えに追加情報を追加する。
CheckLiganameメソッドでは、カーソルがnullかどうかを確認します。カーソルは常にオブジェクトを返すので、nullのチェックは何もしません。しかし問題はdb.close();
行にあります
データベース接続を閉じると、Cursor
は無効になり、ほとんどの場合はnullになります。
値を取得したら、データベースを閉じます。
カーソルのNULLをチェックする代わりに、返される行数が0より大きいかどうかをチェックする必要があります。
編集2:だからここでそれを動作させる方法のいくつかのコードです。編集3:追加したコードが間違ってすみません...; S
最初に、別のEditText
がフォーカスを得た場合は、フォーカスをクリアする必要があります。これはmyEditText.clearFocus()
で行うことができます。それであなたのonFocusChangeListenerでは、最初のEditText
がフォーカスを持っているかどうかを本当に気にするべきではありません。
public class MainActivity extends Activity implements OnFocusChangeListener {
private EditText editText1, editText2;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
editText1 = (EditText) findViewById(R.id.editText1);
editText1.setOnFocusChangeListener(this);
editText2 = (EditText) findViewById(R.id.editText2);
editText2.setOnFocusChangeListener(this);
}
@Override
public void onFocusChange(View v, boolean hasFocus) {
String liganame = editText1.getText().toString();
if(liganame.length() == 0) {
if(editText1.requestFocus()) {
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
editText2.clearFocus();
Toast.makeText(MainActivity.this, "Dieser Liganame ist bereits vergeben", Toast.LENGTH_SHORT).show();
}
}
}
}
最初のチェックif(liganame.length() == 0)
をあなた自身のチェックで置き換えれば、うまくいくはずです。この例で行ったように、すべてのEditTextビューはそれらのonFocusChangeListener
を同じリスナーに設定する必要があることに注意してください。
Darwindコードはキーボードを表示しませんでした。
これは私のために働く:
_searchText.requestFocus();
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(_searchText, InputMethodManager.SHOW_IMPLICIT);
キーボードが表示されていない場合は、強制的に試みてください。
imm.showSoftInput(_searchText, InputMethodManager.SHOW_FORCED);
これはボタンがクリックされたときにEditTextのフォーカスを変更します。
public class MainActivity extends Activity {
private EditText e1,e2;
private Button b1,b2;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
e1=(EditText) findViewById(R.id.editText1);
e2=(EditText) findViewById(R.id.editText2);
e1.requestFocus();
b1=(Button) findViewById(R.id.one);
b2=(Button) findViewById(R.id.two);
b1.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
e1.requestFocus();
}
});
b2.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
e2.requestFocus();
}
});
}
}
これは私から働きます:
public void showKeyboard(final EditText ettext){
ettext.requestFocus();
ettext.postDelayed(new Runnable(){
@Override public void run(){
InputMethodManager keyboard=(InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
keyboard.showSoftInput(ettext,0);
}
}
,200);
}
隠れる:
private void hideSoftKeyboard(EditText ettext){
InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
inputMethodManager.hideSoftInputFromWindow(ettext.getWindowToken(), 0);
}
EditTextを動的に作成する場合は、requestFocus()を以下のように設定する必要があります。
EditText editText = new EditText(this);
editText.setWidth(600);
editText.requestFocus();
Xmlビューでコンポーネントを既に宣言している場合は、それを見つけなければなりません。以下に示すようにフォーカスすることができます。
EditText e1=(EditText) findViewById(R.id.editText1);
e1.requestFocus();
対応するEditTextコンポーネントにのみフォーカスを設定します。
これは私のために働いたものであり、フォーカスを設定し、キーボードも表示します
EditText userNameText = (EditText) findViewById(R.id.textViewUserNameText);
userNameText.setFocusable(true);
userNameText.setFocusableInTouchMode(true);
userNameText.requestFocus();
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(userNameText, InputMethodManager.SHOW_IMPLICIT);
mEditText.setFocusableInTouchMode(true);
mEditText.requestFocus();
if(mEditText.requestFocus()) {
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
}
Button btnClear = (Button) findViewById(R.id.btnClear);
EditText editText1=(EditText) findViewById(R.id.editText2);
EditText editText2=(EditText) findViewById(R.id.editText3);
btnClear.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
editText1.setText("");
editText2.setText("");
editText1.requestFocus();
}
});
private void requestFocus(View view) {
if (view.requestFocus()) {
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
}
}
//Function Call
requestFocus(yourEditetxt);
これを一行で実行できます。
yourEditText.RequestFocusFromTouch();
Xamarin.Androidのために私はこの拡張子を作成しました。
public static class ViewExtensions
{
public static void FocusEditText(this EditText editText, Activity activity)
{
if (editText.RequestFocus())
{
InputMethodManager imm = (InputMethodManager)activity.GetSystemService(Context.InputMethodService);
imm.ShowSoftInput(editText, ShowFlags.Implicit);
}
}
}
マニフェストでこのコードを試してください
<activity Android:name=".EditTextActivity" Android:windowSoftInputMode="stateAlwaysVisible">
</activity>
new OnEditorActionListener(){
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
editText.requestFocus();
//used ******* return true ******
return **true**;
}
}
私はあなたがすでに解決策を見つけたかどうかを知りません、しかし再び焦点を要求した後あなたの編集問題のために:
あなたのedittext1でメソッドselectAll()
またはsetSelection(0)
(emtpyの場合)を呼び出そうとしましたか?
これが役立つかどうか私に知らせてください、それで私は私の答えを完全な解決策に編集します。
このコードを使用できます
txt_Mob.setOnFocusChangeListener(new View.OnFocusChangeListener(){
@Override
public void onFocusChange(View view, boolean b) {
if (b){
//IsFocus
}else{
//IsNotFocus
}
}
});