كود اخفاء الكيبورد بعد الارسال:
MainActivity.this.getWindow().setSoftInputMode( WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN );تمرير listview الى الاسفل:
listview1.setTranscriptMode(ListView.TRANSCRIPT_MODE_ALWAYS_SCROLL); listview1.setStackFromBottom(true);
for (DataSnapshot dshot: _dataSnapshot.getChildren()){ str.add(dshot.getKey());
منع الكيبورد من الانبثاق بعد فتح التطبيق:
android.view.inputmethod.InputMethodManager imm= (android.view.inputmethod.InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), 0);
تعليقات: 0
إرسال تعليق