您好我正在寻找使用html页面的select部分中的值填充微调器的最佳/最简单方法。最终,微调器值必须与html选择部分中的微调器值完全相同。我希望以最简单的方式做到这一点。我想到了以下想法:
有没有人知道最简单的方法(对于阅读部分和人口部分)?是否有一个android对象/类允许直接将html页面中的值链接到微调器?
非常感谢您的帮助! 本
答案 0 :(得分:1)
我在AsyncTask中使用了jsoup来获取选项的值和文本,并将它们放在文本/值TreeMap(排序的HashMap)中,如下所示:
class TheaterGetter extends AsyncTask<Context, Void, Document> {
private Context context;
@Override
protected Document doInBackground(Context... contexts) {
context = contexts[0];
Document doc = null;
try {
doc = Jsoup.connect("http://landmarkcinemas.com").timeout(10000).get();
} catch (IOException e) {
Log.e("website connection error", e.getMessage());
}
return doc;
}
protected void onPostExecute(Document doc) {
Element allOptions = doc.select("select[id=campaign").first();
Elements options = allOptions.getElementsByTag("option");
options.remove(0);
TreeMap<String, String> theaters = new TreeMap<String, String>();
for (Element option:options) {
theaters.put(option.html(), option.attr("value"));
}
然后我为微调器创建了这个适配器:
public class TreeMapSpinAdapter extends ArrayAdapter{
private Context context;
private TreeMap<String, String> treeMap;
public TreeMapSpinAdapter(Context context, int textViewResourceId, TreeMap<String, String> treeMap){
super(context, textViewResourceId, treeMap.values().toArray());
this.context = context;
this.treeMap = treeMap;
}
@Override
public int getCount() {
return this.treeMap.values().size();
}
@Override
public Object getItem(int arg0) {
return this.treeMap.values().toArray()[arg0];
}
public Object getItem(String key) {
return treeMap.get(key);
}
@Override
public long getItemId(int position) {
return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
TextView label = new TextView(context);
label.setTextColor(Color.BLACK);
label.setText(treeMap.keySet().toArray()[position].toString());
return label;
}
@Override
public View getDropDownView(int position, View convertView, ViewGroup parent) {
TextView label = new TextView(context);
label.setTextColor(Color.BLACK);
label.setText(treeMap.keySet().toArray()[position].toString());
return label;
}
}
然后,在我们的AsyncTask中,我们设置了微调器,如下所示:
TreeMapSpinAdapter adapter = new TreeMapSpinAdapter(context, android.R.layout.simple_spinner_item, theaters);
final Spinner spinner = (Spinner) ((Activity) context).findViewById(R.id.spinner1);
spinner.setAdapter(adapter);
最后我们像这样调用我们的AsyncTask:
new TheaterGetter().execute(this);
事情被称为剧院,因为在我的情况下,我得到了一个剧院位置列表。