我正在使用 XML parser.in 我必须根据来自 API 的值更改 textview 的颜色。
从 api 它将返回 1 或 -1(对我来说,如果它是 1 意味着我必须将背景更改为绿色,否则为红色)。
我怎样才能做到这一点。
简单的...
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);
}
尝试这个,
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);
这很简单:
if(API()==1)
textView.setBackgroundColor(R.color.black);
else
textView.setBackgroundColor(R.color.black);
如果返回值在字符串中,请尝试
TextView txt =(TextView) findViewById(R.id.textView01);
String k;
if(k.contentEquals("1")){
`txt.setBackgroundColor(Color.GREEN);`
}
else{
txt.setBackgroundColor(Color.RED);
}
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);
}