1

我正在研究listview,我想让在xml文件的textview中给出的文本可见。我在列表中添加的列表项显示正确(可见)但不是文本。我希望该文本可见也需要帮助。

在此处输入图像描述

xml文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >


    <TextView
        android:id="@+id/id"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:visibility="gone" />



    <TextView
        android:id="@+id/name"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:paddingTop="6dip"
        android:paddingLeft="6dip"
        android:text="Name:"
        android:visibility="visible"
        android:textSize="17sp"
        android:textStyle="bold" />

    <TextView
        android:id="@+id/gender"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:paddingLeft="6dip"
        android:paddingTop="6dip"
        android:text="Gender:"
        android:textColor="#FF00FF"
        android:textSize="17sp"
        android:textStyle="bold"
        android:visibility="visible" />

</LinearLayout>

Java 代码:将数据放入适配器

if (success == 1) {


                    products = json.getJSONArray(TAG_PRODUCTS);


                    for (int i = 0; i < products.length(); i++) {
                        JSONObject c = products.getJSONObject(i);


                        String id = c.getString(TAG_PID);
                        String name = c.getString(TAG_NAME);
                        String gender = c.getString(TAG_GENDER);


                        HashMap<String, String> map = new HashMap<String, String>();


                        map.put(TAG_ID, id);
                        map.put(TAG_NAME, name);
                        map.put(TAG_GENDER, gender);


                        productsList.add(map);
                    }






                public void run() {

                    ListAdapter adapter = new SimpleAdapter(
                            AllPersonActivity.this, productsList,
                            R.layout.list_item, new String[] { TAG_ID,
                                    TAG_NAME, TAG_GENDER},
                            new int[] { R.id.pid, R.id.name, R.id.gender });
                    // updating listview
                    setListAdapter(adapter);
                }
            });
4

4 回答 4

0

不知道TextView你有哪个问题,但第一个设置

android:visibility="gone"

这将阻止它出现。

于 2013-09-25T07:22:54.573 回答
0

IMHO it is due to the same background color of LinearLayout and font color of the contents. Try the following code

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@android:color/black"
android:orientation="vertical" >


<TextView
    android:id="@+id/id"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:visibility="gone" />



<TextView
    android:id="@+id/name"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:paddingTop="6dip"
    android:paddingLeft="6dip"
    android:text="Name:"
    android:visibility="visible"
    android:textColor="@android:color/white"
    android:textSize="17sp"
    android:textStyle="bold" />

<TextView
    android:id="@+id/gender"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:textColor="@android:color/white"
    android:paddingLeft="6dip"
    android:paddingTop="6dip"
    android:text="Gender:"
    android:textColor="#FF00FF"
    android:textSize="17sp"
    android:textStyle="bold"
    android:visibility="visible" />

于 2013-09-25T07:37:28.253 回答
0

回答我自己的问题只是为了帮助那些像我一样面临问题的人。我找到了解决方案,尽管它不是一个好的解决方案,但对我有用,并且将其更改为不同的解决方案Views可以帮助以不同的方式显示文本或其他内容。问题是我的代码(适配器)正在替换已解析的字符串,xml TextViews所以我TextView在每个来自列表的项目上方放置了另一个。

这是我所做的更改的 XML

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >


    <TextView
        android:id="@+id/id"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:visibility="gone" />


    <!--This is to show the label "Name" above the listitem (whatever name) come from java code parsed, json  -->

    <TextView
        android:id="@+id/txtshowname"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Name"
        android:textAppearance="?android:attr/textAppearanceMedium" />


<!-- This TextView will contain the listitems loaded from server -->

     <TextView
        android:id="@+id/name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingTop="6dip"
        android:paddingLeft="6dip"
        android:visibility="visible"
        android:textColor="@android:color/white"
        android:textSize="17sp"
        android:textStyle="bold" />



 <!--This is to show the label "Gender" above the listitem (whatever gender) come from java code parsed, json  -->
    <TextView
        android:id="@+id/txtshowGender"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Gender"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <TextView
        android:id="@+id/gender"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingLeft="6dip"
        android:paddingTop="6dip"
        android:textColor="#FF00FF"
        android:textSize="17sp"
        android:textStyle="bold"
        android:visibility="visible" />

</LinearLayout>

这个小小的改变也对我有用

map.put(TAG_ID, id);
                    map.put(TAG_NAME, "Name" + name);
                    map.put(TAG_GENDER, "Gender" + gender);


                    productsList.add(map);
于 2013-09-25T08:21:04.093 回答
0

您可以将文本附加到列表视图中填充的数据。

即 YourTextView.setText("Name:" + listitem);

像这样。是最简单的方法。

于 2013-09-25T09:42:33.247 回答