如何根据正值或负值更改自定义列表视图中的arraylist项的颜色

时间:2014-04-16 21:24:25

标签: android android-layout android-listview arraylist android-arrayadapter

我是Android的新手,我正在构建一个应用程序来显示XML Feed中的股票价格。

我有一个包含3个项目的数组列表。但是,我想将数组列表中某个项目的颜色更改为红色(如果是-ve)或绿色(如果是+ ve)。

我不知道如何做到这一点,或者在我的代码中最好这样做。

请帮忙......

我的适配器类:

public class TheAdapter extends ArrayAdapter<TheMetal>{

public TheAdapter(Context ctx, int textViewResourceId, List<TheMetal> sites) {
    super(ctx, textViewResourceId, sites);
}



@Override
public View getView(int pos, View convertView, ViewGroup parent){
    RelativeLayout row = (RelativeLayout)convertView;
    Log.i("StackSites", "getView pos = " + pos);
    if(null == row){

        LayoutInflater inflater = (LayoutInflater)parent.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        row = (RelativeLayout)inflater.inflate(R.layout.row_metal, null);
    }




    TextView dispNameTxt = (TextView)row.findViewById(R.id.displayNameText);
    TextView spotPriceTxt = (TextView)row.findViewById(R.id.spotPriceText);
    TextView changeTxt = (TextView)row.findViewById(R.id.changeText);


    dispNameTxt.setText (getItem(pos).getDisplayName());
    spotPriceTxt.setText(getItem(pos).getSpotPrice());
    changeTxt.setText(getItem(pos).getChange());


    return row;

}

我的row_metal布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dp" >



<TextView
    android:id="@+id/displayNameText"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textSize="30sp"
    android:layout_marginLeft="20dp" />

<TextView
    android:id="@+id/spotPriceText"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_toRightOf="@+id/displayNameText"
    android:textSize="19sp"
    android:textStyle="bold"
    android:gravity="right"
    android:layout_alignParentRight="true"
    android:layout_marginRight="30dp" />

<TextView
    android:id="@+id/changeText"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/spotPriceText"
    android:layout_toRightOf="@+id/displayNameText"
    android:textSize="16sp"
    android:gravity="right"
    android:layout_alignParentRight="true"
    android:layout_marginRight="20dp"
    />

2 个答案:

答案 0 :(得分:1)

这很简单。您只需将这些行放在getView()方法中:

        if (Double.parseDouble(getItem(pos).getChange())>=0) {
                     row.setBackgroundColor(Color.parseColor("#00FF00");
                     changeTxt.setTextColor(Color.parseColor("#00FF00"));
                    } else {  
                     row.setBackgroundColor(Color.parseColor("#FF0000");                      
                     changeTxt.setTextColor(Color.parseColor("#FF0000"));
                    }

答案 1 :(得分:1)

将您的getView()方法更改为此

@Override  
public View getView(int pos, View convertView, ViewGroup parent){

  if(convertView == null)
    convertView = getLayoutInflater().inflate(R.layout.row_metal, null);


  TextView dispNameTxt = (TextView) convertView .findViewById(R.id.displayNameText);
  TextView spotPriceTxt = (TextView) convertView .findViewById(R.id.spotPriceText);
  TextView changeTxt = (TextView) convertView .findViewById(R.id.changeText);

  dispNameTxt.setText(getItem(pos).getDisplayName());
  spotPriceTxt.setText(getItem(pos).getSpotPrice());
  changeTxt.setText(getItem(pos).getChange());


  if( Double.parseDouble(getItem(pos).getSpotPrice()) >= 0 )
    convertView.setBackgroundColor(Color.GREEN);
  else
    convertView.setBackgroundColor(Color.RED);

  return convertView;
}