-1

我正在使用 XML parser.in 我必须根据来自 API 的值更改 textview 的颜色。

从 api 它将返回 1 或 -1(对我来说,如果它是 1 意味着我必须将背景更改为绿色,否则为红色)。

我怎样才能做到这一点。

4

5 回答 5

3

简单的...

TextView yourTextView = (TextView)findViewById(R.id.yourTextView);

int response = responseFromParse(); // your parser logic

if(response == 1){
    yourTextView.setBackgroundColor(Color.GREEN);    
}else{    
    yourTextView.setBackgroundColor(Color.RED);    
}
于 2012-05-08T06:12:48.917 回答
0

尝试这个,

TextView txt= (TextView) findViewById(R.id.textview1);
int val=Integer.parseInt(txt.getText().toString());
if(val==1)
   txt.setBackgroundColor(Color.GREEN);
else if(val==-1)
   txt.setBackgroundColor(Color.RED);
于 2012-05-08T06:18:19.237 回答
0

这很简单:

if(API()==1)
    textView.setBackgroundColor(R.color.black);
else
    textView.setBackgroundColor(R.color.black);
于 2012-05-08T06:14:19.610 回答
0

如果返回值在字符串中,请尝试

TextView txt =(TextView) findViewById(R.id.textView01);

String k;

if(k.contentEquals("1")){

 `txt.setBackgroundColor(Color.GREEN);`

}

else{

txt.setBackgroundColor(Color.RED);

}

于 2012-05-08T06:15:20.360 回答
0

TextView text_view =(TextView) findViewById(R.id.textView1);

int returnval= your_returnval();

if(returnval== 1){

    text_view.setBackgroundColor(Color.GREEN); 

}
else if(returnval== -1){   

    text_view.setBackgroundColor(Color.RED);    
}
于 2012-05-08T06:25:09.607 回答