我从XML
服务请求中收到Restfull
,需要在listView
中显示。
我决定模仿我在在线博客上发现的类似功能,它似乎反馈原始视图,而不是我分配给元素的视图格式。
现在你可以看到它重复的两次.....在我的移动联系人栏之后是ListView
开始然后重复的地方。
ListView的XMl:
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/button6"
android:layout_below="@+id/textView1"
android:layout_centerHorizontal="true" >
</ListView>
以及我用于适配器的XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="left|center"
android:paddingBottom="5dp"
android:paddingTop="5dp"
android:paddingLeft="5dp" >
<TextView
android:id="@+id/ContactTitle"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"/>
<TextView
android:id="@+id/Name"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center" />
<TextView
android:id="@+id/MainPhone"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center" />
<TextView
android:id="@+id/CellPhone"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center" />
<TextView
android:id="@+id/Fax"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center" />
<TextView
android:id="@+id/Email"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center" />
</LinearLayout>
我还不是很擅长构建这些ListViews
而且知道我做过的事情,但是我无法将其放在上面。这是我的Java处理listView
的数据:
protected void onPostExecute(String result){
String xml = result;
String KEY_ITEM = "Contact";
String KEY_CONTACTTITLE = "ContactTitle";
String KEY_NAME = "Name";
String KEY_MAINPHONE = "Phone";
String KEY_CELLPHONE ="Cell";
String KEY_FAX = "Fax";
String KEY_EMAIL= "Email";
ArrayList<HashMap<String, String>> menuItems = new ArrayList<HashMap<String, String>>();
Document doc = getDomElement(xml);
if (xml != null) {
{
NodeList nl = doc.getElementsByTagName(KEY_ITEM);
for (int i = 0; i < nl.getLength(); i++) {
HashMap<String, String> map = new HashMap<String, String>();
Element e = (Element) nl.item(i);
map.put(KEY_CONTACTTITLE, getValue(e, KEY_CONTACTTITLE));
map.put(KEY_NAME, getValue(e, KEY_NAME));
map.put(KEY_MAINPHONE, getValue(e, KEY_MAINPHONE));
map.put(KEY_CELLPHONE, getValue(e, KEY_CELLPHONE));
map.put(KEY_FAX, getValue(e, KEY_FAX));
map.put(KEY_EMAIL, getValue(e, KEY_EMAIL));
menuItems.add(map);
}
ListAdapter adapter = new SimpleAdapter(MoveContactsActivity.this, menuItems,
R.layout.activity_move_contacts, new String[] {
KEY_CONTACTTITLE, KEY_NAME, KEY_MAINPHONE, KEY_CELLPHONE, KEY_FAX, KEY_EMAIL },
new int[] { R.id.ContactTitle, R.id.Name,
R.id.MainPhone, R.id.CellPhone, R.id.Fax, R.id.Email });
setListAdapter(adapter);
}
}
}
如果有人可以帮我解决这个问题,或者让我指出正确的方向,那就太喜欢了。再次感谢您的时间!
答案 0 :(得分:1)
看起来你正在为适配器指定错误的布局。或者eclipse的生成资源已经混淆了,你应该干净。
此外,它的价值: 您应该在doInBackground中进行解析和映射生成,将返回值修改为Map类型,并使用每个映射调用publishProgress(hashMap)。然后在onProgressUpdate(Map ... values)中,您可以将地图添加到ArrayList并发出adapter.notifyDataSetChanged()以通知它新数据。