目前我正在構建這個android應用程序,有一件事情讓我難住的是句柄ListView
項目都顯示在我需要他們的順序,但如果一個標籤有一個空值,它顯示作爲一個單線對象,除了空間和空間佈局之外。如何檢查解析的XML標籤空值價值
都在這個圖像的ListView項目的空間被送到一個空字符串,我解析它。 我只是想知道處理此錯誤的最佳方法?
我爲ListView項目XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/ContactTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@color/White" />
<TextView
android:id="@+id/Name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/ContactTitle"
android:layout_below="@+id/ContactTitle"
android:layout_marginRight="17dp"
android:textColor="@color/White" />
<TextView
android:id="@+id/MainPhone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/Name"
android:layout_below="@+id/Name"
android:textColor="@color/White"/>
<TextView
android:id="@+id/Cell"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/MainPhone"
android:layout_below="@+id/MainPhone"
android:textColor="@color/White" />
<TextView
android:id="@+id/Fax"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/Cell"
android:layout_below="@+id/Cell"
android:textColor="@color/White" />
<TextView
android:id="@+id/Email"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/Fax"
android:layout_below="@+id/Fax"
android:ellipsize="marquee"
android:textColor="@color/EmailColor" />
</RelativeLayout>
我需要檢查空TextViews
和隱藏起來。 我的代碼是在這裏:
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);
if (getValue(e, KEY_CONTACTTITLE) != null) {
map.put(KEY_CONTACTTITLE,
getValue(e, KEY_CONTACTTITLE));
} else {
TextView contactTitle = (TextView) findViewById(R.id.ContactTitle);
}
if (getValue(e, KEY_NAME) != null) {
map.put(KEY_NAME, getValue(e, KEY_NAME));
}
if (getValue(e, KEY_MAINPHONE) != null) {
map.put(KEY_MAINPHONE, getValue(e, KEY_MAINPHONE));
}
if (getValue(e, KEY_CELLPHONE) != null) {
map.put(KEY_CELLPHONE, getValue(e, KEY_CELLPHONE));
}
if (getValue(e, KEY_FAX) != null) {
map.put(KEY_FAX, getValue(e, KEY_FAX));
}
if (getValue(e, KEY_EMAIL) != null) {
map.put(KEY_EMAIL, getValue(e, KEY_EMAIL));
}
menuItems.add(map);
menuItems = simple;
}
String[] hashMapObjects = { KEY_CONTACTTITLE, KEY_NAME,
KEY_MAINPHONE, KEY_CELLPHONE, KEY_FAX, KEY_EMAIL };
int[] listItemObjects = { R.id.ContactTitle, R.id.Name,
R.id.MainPhone, R.id.Cell, R.id.Fax, R.id.Email };
ListAdapter adapter = new SimpleAdapter(
MoveContactsActivity.this, menuItems,
R.layout.listed_contacts, hashMapObjects,
listItemObjects);
setListAdapter(adapter);
我試圖檢查值爲null對象添加到HashMap
。這當然不起作用,我想知道如何檢查那些null
TextViews
並隱藏它們。
告訴我您的適配器,請 – 2013-03-08 20:56:43
我用簡單的適配器......的String [] hashMapObjects = {KEY_CONTACTTITLE,KEY_NAME, \t \t \t \t \t \t \t KEY_MAINPHONE,KEY_CELLPHONE,KEY_FAX,KEY_EMAIL}; \t \t \t \t \t INT [] listItemObjects = {R.id.ContactTitle,R.id.Name, \t \t \t \t \t \t \t R.id.MainPhone,R.id.Cell,R.id.Fax, R.id.Email}; \t \t \t \t \t ListAdapter適配器=新SimpleAdapter( \t \t \t \t \t \t \t MoveContactsActivity.this,的菜單項, \t \t \t \t \t \t \t R.layout.listed_contacts,hashMapObjects, \t \t \t \t \t \t \t listItemObjects);然後我設置適配器。 – Keeano 2013-03-10 00:33:47
如果您希望某些列表項與其他列表項不同,則無法使用簡單的適配器。你必須使用創建你的適配器,然後在'getView'函數中,你可以檢查空值,並且不會將它們設置到任何小部件到列表項中。 – 2013-03-10 07:33:42