我在信中遵循了各种“如何”的例子(或者我认为),但我仍然无法使自定义ListAdapter工作。我有一个带有列表视图的对话框,其中包含对象数组(类“Notam”)的引用。我想根据引用对象的属性设置每个列表项的颜色。
(在你读我的代码之前,我有一个怪癖,大括号必须排成一行或者我看不到这些块的位置。我不喜欢在同一行的末尾放一个左大括号的惯例。)
这是自定义类的代码(就像我试图将每个项目的文本颜色设置为洋红色一样):
private class GotoAdapter extends ArrayAdapter<String>
{
private ArrayList<String> items;
public GotoAdapter(Context context, int textViewResourceId, ArrayList<String> items)
{
super(context, textViewResourceId, items);
this.items = items;
}
@Override
public View getView(int position, View convertView, ViewGroup parent)
{
View v = convertView;
if (v == null)
{
LayoutInflater vi = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = vi.inflate(R.layout.goto_row, null);
}
String s = items.get(position);
if (s != null)
{
TextView tt = (TextView) v.findViewById(R.id.text1);
if (tt != null)
{
String s1 = (String)tt.getText(); // this is always an empty string!
tt.setTextColor(0xFF00FF); // this has no effect!
}
}
return v;
}
}
使用此派生类时,字符串s具有所需的显示文本(除了在屏幕上看不到它),但返回的TextView中的文本始终为空字符串,并且设置颜色无效
这是在主视图中单击“转到”按钮时显示对话框的代码:
mGotoButton.setOnClickListener(new View.OnClickListener()
{
public void onClick(View v)
{
// The pre-loaded array gets round a problem which I read about somewhere else
// (the ArrayList gets cleared again below)
String[] array = {"one", "two", "three"};
ArrayList<String> lst = new ArrayList<String>();
lst.addAll(Arrays.asList(array));
// custom dialog
final Dialog dialog = new Dialog(context);
dialog.setContentView(R.layout.goto_dialog);
dialog.setTitle("Choose Notam");
// Create the list view and adapter
final ListView list = (ListView) dialog.findViewById(R.id.goto_list);
// If I replace this reference to my custom adapter...
final GotoAdapter adapter = new GotoAdapter
(mContext, R.layout.goto_row, lst);
// ... with this normal one, everything works!
// (but of course now I can't get access to the objects.)
// final ArrayAdapter<String> adapter = new ArrayAdapter<String>
// (mContext, R.layout.goto_row, lst);
list.setAdapter(adapter);
// Populate the adapter
adapter.clear(); // first clear the silly preset strings
// Notam is my object class.
// Spine.mNotamsDisplayed is a public static NotamArray.
// class NotamArray extends ArrayList<Notam>
// Spine is my main activity where I keep my global (app-wide) stuff.
for (Notam notam : Spine.mNotamsDisplayed)
{
// This gets the reference string from the Notam object.
// This is what goes into the list.
String s = notam.getReference();
adapter.add(s);
}
// Sort into alphabetical order
adapter.sort(new Comparator<String>()
{
public int compare(String arg0, String arg1)
{
return arg0.compareTo(arg1);
}
});
list.setOnItemClickListener(new AdapterView.OnItemClickListener()
{
public void onItemClick(AdapterView<?> a, View v, int pos, long id)
{
String s;
int i;
s = (String)a.getItemAtPosition(pos);
// This static function returns the index in Spine.mNotamsDisplayed
// which is referenced by the reference string s.
// I have to do this because I lost the one-for-one correlation of page
// indexes with list view entries when I did the sort.
i = NotamArray.findNotamIndexByReference(Spine.mNotamsDisplayed, s);
if (i >= 0)
{
// This is what the Goto button and dialog is all about: this
// just moves my main view's pager to the page that was selected.
mPager.setCurrentItem(i);
}
dialog.dismiss();
}
});
dialog.show();
}
});
这是对话框的gml(goto_dialog.xml):
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ListView
android:id="@+id/goto_list"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</RelativeLayout>
这是我的列表视图行(goto_row.xml)的xml:
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#00FF00"
android:gravity="center_vertical"
android:textAppearance="?android:attr/textAppearanceMedium"
android:padding="2dp"
android:textSize="20dp"
/>
(我将文本颜色设置为绿色,所以如果我使用标准的列表视图适配器,我可以看到这个位是有用的。(每个条目的文本都是绿色的。但是如果我使用了我的话,也看不到任何文字自定义适配器,虽然它在那里 - 我假设黑色黑色。)
必须有人能够发现我所做的一件微不足道的错误 - 拜托!
答案 0 :(得分:2)
根据我的阅读,您似乎想要设置每个列表项的文本颜色以匹配数组中的颜色。
我想根据引用对象的属性设置每个列表项的颜色。
但是,您的初始数组设置为
String[] array = {"one", "two", "three"};
因此,当您根据阵列动态设置文本颜色时,这将导致问题。但我相信你打算稍后改变它。
当您使用标准数组适配器时,它只是将数组中的项目显示为文本,这就是原因:
如果我使用标准列表视图适配器。 (当然每个条目的文本都是绿色的。但是如果我使用自定义适配器
,则无法看到任何文本
要查看您的自定义适配器是否正常工作(更改颜色),您可以首先在goto_row.xml文件的TextView中添加一行:
android:text="Test String"
现在它将显示具有不同颜色的“测试字符串”和
String s1 = (String)tt.getText();
上面的行将获得“Test String”
答案 1 :(得分:0)
我在问题的最后发现了一些微不足道的错误。这是定制适配器中的这一行:
tt.setTextColor(0xFF00FF);
似乎0xFF00FF不是有效的颜色值,这就是我在屏幕上看不到任何内容的原因。 将其更改为:
tt.setTextColor(Color.rgb(255, 0, 255);
解决了问题,默认绿色更改为品红色,和我可以将文本设置为我想要的值。所以我现在可以将各个行颜色设置为他们需要的颜色。
感谢@LukasKnuth和@tigerpenguin指出我正确的方向。