gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 05:24:20 26 4
gpt4 key购买 nike

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

字体列表.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 的其余部分似乎没问题。唯一的问题是没有文本。

最佳答案

这是因为您的自定义 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"/>

关于java - TextView 没有出现在带有自定义适配器的 ListView 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23282669/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com