TextView没有出现在带有自定义适配器的ListView中

时间:2014-04-25 01:24:46

标签: java android xml listview android-arrayadapter

我有一个ListView,我正在尝试使用ArrayAdapter(自定义适配器类)进行填充。问题是我在TextView内制作的list_item.xml没有出现。这很奇怪,因为在这个xml中我还创建了一个ImageView并且 显示出来了。这是我的代码:

FontList.java

lv = (ListView) findViewById(R.id.listView1);

ArrayList<String> fontList = new ArrayList<String>();

    try {
      BufferedReader br = new BufferedReader(new InputStreamReader(getAssets().open("fonts.txt")));

      String line = br.readLine();
      while (line != null) {
            fontList.add(line);
            line = br.readLine();
      }
      br.close();
    }
    catch (IOException e) {
      e.printStackTrace();
    }

ArrayAdapter<String> adapter = new CustomAdapter(this, R.layout.list_item, R.id.fontTextView, fontList);        
lv.setAdapter(adapter); 

CustomAdapter.java

public class CustomAdapter extends ArrayAdapter<String> {
Context context;
int layoutResourceId;
int textViewResourceId;
ArrayList<String> data = new ArrayList<String>();

public CustomAdapter(Context context, int layoutResourceId, int textViewResourceId, ArrayList<String> fontList) {

    super(context, layoutResourceId,textViewResourceId, fontList);
    this.layoutResourceId = layoutResourceId;
    this.textViewResourceId = textViewResourceId;
    this.context = context;
    this.data = fontList;
}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    View row = convertView;

    LayoutInflater inflater = ((Activity) context).getLayoutInflater(); 
    row = inflater.inflate(layoutResourceId, parent, false);


    String item = data.get(position);
    ImageView ib = (ImageView)row.findViewById(R.id.alreadyDownloaded);
    TextView textView = (TextView)row.findViewById(R.id.fontTextView);

    if (item.equals("Aleo") ){ //this is working properly so the arraylist is populated
        ib.setVisibility(View.INVISIBLE);
    }    

    return row;
}

list_item.xml

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

    <TextView
        android:id="@+id/fontTextView"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="left"
        android:layout_marginRight="20dp"
        android:layout_weight="0.5"
        android:fontFamily="sans-serif-light"
        android:gravity="center_vertical"
        android:minHeight="?android:attr/listPreferredItemHeight"
        android:paddingLeft="6dip"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:textStyle="normal" />

    <ImageView
        android:id="@+id/alreadyDownloaded"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:layout_marginLeft="80dp"
        android:layout_weight="0.5"
        android:gravity="center_vertical"
        android:paddingLeft="6dip"
        android:src="@drawable/ic_action_accept" />

</LinearLayout>

有谁知道为什么fontTextView没有出现? ListView的其余部分似乎很好。唯一的问题是没有文字。

2 个答案:

答案 0 :(得分:3)

这是因为您的自定义ArrayAdatper会将默认字体颜色设置为白色,如果您的背景颜色也是白色,则您实际上看不到文本。

尝试更改.xml文件中的背景颜色或字体颜色。您可以像这样更改背景颜色。

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
          android:id="@+id/sample"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:background="#028dbe"
          android:ellipsize="end"
          android:maxLines="5"/>

答案 1 :(得分:0)

问题是,您没有在setText方法中致电getView

TextView textView = (TextView)row.findViewById(R.id.fontTextView);
textView.setText(data.get(position));

确保TextView存在的一种方法是将背景颜色应用于TextView,以便您可以知道TextView实际存在并且不会被隐藏/推开/无论你的布局还是其他元素。