我有一個Android應用程序,我在for循環中動態創建了EditText
。在動態創建的編輯文本上檢測觸摸
for (int i = 0; i < materialCount; i++) {
LayoutInflater layoutInflater = (LayoutInflater) getActivity()..getSystemService(Context.LAYOUT_INFLATER_SERVICE);
final View addView = layoutInflater.inflate(R.layout.row, null);
ratePerUnit = (EditText) addView.findViewById(R.id.releaseYear);
}
所以我必須在每個編輯文本上添加點擊事件。所以請告訴我如何在每個編輯文本上添加點擊事件。
你說的單擊事件是什麼意思?你期望它基本上做什麼? –