簡體   English   中英

如何基於正值或負值更改自定義列表視圖中arraylist項的顏色

[英]How to change color of arraylist item in custom listview based on positive or negative value

我是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"
    />

很簡單。 您只需要將這些行放在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"));
                    }

將您的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;
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM