我正在尝试用字母创建一个快速滚动。有人可以告诉我如何在另一个课程中使用这个问题中的代码吗?我有一个类,它的方法返回我需要放入快速滚动的字母,所以我想在另一个类中使用这个类,如下所示:
MyListAdaptor mla = new MyListAdaptor(getApplicationContext(), itemsBP);
mla.xyz();
但后来我不知道如何让这些字母出现。
如果可以,请帮助我。
我正在尝试用字母创建一个快速滚动。有人可以告诉我如何在另一个课程中使用这个问题中的代码吗?我有一个类,它的方法返回我需要放入快速滚动的字母,所以我想在另一个类中使用这个类,如下所示:
MyListAdaptor mla = new MyListAdaptor(getApplicationContext(), itemsBP);
mla.xyz();
但后来我不知道如何让这些字母出现。
如果可以,请帮助我。
在一些研究结束时,我意识到缺少的是以下代码,它必须放在 OnCreate() 中:
LinkedList <String> mLinked <String> = new LinkedList ();
for (int i = 0; i <nomes.length: i + +) {
mLinked.add (names [i]);
}
setListAdapter (new MyListAdaptor (this, mLinked));
ListView lv = getListView ();
lv.setFastScrollEnabled (true);
lv.setOnItemClickListener (new OnItemClickListener () {
public void onItemClick (AdapterView <?> parent, View view,
int position, long id) {
/ / When clicked, show a toast with the TextView text
Toast.makeText (getApplicationContext (), ((TextView) view). GetText (). ToString (), Toast.LENGTH_SHORT.) Show ();
}
});
并将类代码放在类MyListAdaptor Main OnCreate() 中。
感谢您的帮助,希望这可以在未来帮助其他人。