何が問題なのか本当に理解できません。
これは非常によく走っています。
super.onCreate(savedInstanceState);
setContentView(R.layout.select);
Resources r = getResources();
values = r.getStringArray(R.array.values);
sSelect = (Spinner) findViewById(R.id.sSelect);
tvSelect = (TextView) findViewById(R.id.tvSelect);
しかし、これは機能していません。
super.onCreate(savedInstanceState);
setContentView(R.layout.select);
Resources r = getResources();
values = r.getStringArray(R.array.values);
sSelect = (Spinner) findViewById(R.id.sSelect);
tvSelect = (TextView) findViewById(R.id.tvSelect);
sSelect.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {
// TODO Auto-generated method stub
}
});
何が問題なのか本当に知りたいです。また、何が問題なのかをどのように知ることができますか? Androidプログラミングにエラー報告はありませんか?
編集: setOnItemClickListener はスピナーでは使用できません スピナーで使用できるリスナーはどれですか? アプリの起動時に実行されるため、onItemSelectedListenerを使用したくありません。