當前我的ListView填滿了給定的String [],但我想在ListView項目上交替一些樣式。 發生了一些奇怪的事情(我肯定錯過了一些明顯的東西); ListView索引是不固定的,樣式不像假設的那樣交替。使用擴展ArrayAdapter的ListView上的交替樣式<E>隨機結果
我的代碼如下:
package com.blah.blah;
import android.app.ListActivity;
import android.content.Context;
import android.graphics.Color;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.TextView;
public class Help extends ListActivity {
public class CustommAdapter<E> extends ArrayAdapter<E>{
public CustommAdapter(Context context, int textViewResourceId,
E[] objects) {
super(context, textViewResourceId, objects);
}
public View getView(int position, View convertView, ViewGroup parent){
if(convertView == null){
LayoutInflater inflater = (LayoutInflater) getBaseContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = inflater.inflate(R.layout.help_item, null);
}
if(convertView != null){
TextView tvfila = (TextView) convertView.findViewById(R.id.tvfila);
if(position % 2 == 0){
convertView.setBackgroundColor(Color.LTGRAY);
tvfila.setTextColor(Color.BLACK);
}
}
return super.getView(position, convertView, parent);
}
@Override
public boolean areAllItemsEnabled() {
return false;
}
@Override
public boolean isEnabled(int position) {
if(position % 2 == 0){
return false;
}else{
return true;
}
}
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
String[] questions = getResources().getStringArray(R.array.help_questions);
String[] answers = getResources().getStringArray(R.array.help_answers);
String[] DATA = new String[questions.length + answers.length];
int dataindex = 0;
for (int i = 0; i < questions.length; i++){
DATA[dataindex] = questions[i];
dataindex++;
DATA[dataindex] = answers[i];
dataindex++;
}
setListAdapter(new CustommAdapter<String>(this, R.layout.help_item, DATA));
ListView lv = getListView();
lv.setTextFilterEnabled(true);
}
}
的問題是: 是有辦法來固定的ListView索引,這樣我可以使用if(位置%2 == 0)以分離和賠率evens匹配問題和解答
注意:
來自資源的兩個StringArrays具有相同的大小。
的help_item.xml只包含一個TextView
圖片,展示了問題:
預期的行爲
。
。
這個代碼
這很有道理。我認爲這可能是答案。 – blindstuff 2010-10-27 22:16:38
這正是我說的原因:QUOTE:「(我肯定錯過了一些明顯的東西)」。謝謝I82Much,你救了我! – 2010-10-27 23:15:42
很高興我可以得到一些幫助 – I82Much 2010-10-28 02:18:16