萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> 安卓開發 >> Android監聽鍵盤上的確定鍵

Android監聽鍵盤上的確定鍵

mETCommentContent.setOnEditorActionListener(new OnEditorActionListener() {
			
			@Override
			public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
				if (actionId == EditorInfo.IME_ACTION_DONE) {
					hideSoftInput();
				}
				return false;
			}
		});
copyright © 萬盛學電腦網 all rights reserved