嘿我創建一個機器人的TextView其中包含來自JSON .. 這是不錯,但我想改變文本視圖的一部分的顏色..不知道如何變化的android TextView的顏色
這裏是我的詳情 -
JSONArray jArray= new JSONArray(result);
for(int i=0; i<jArray.length();i++)
{
JSONObject getjson=jArray.getJSONObject(i);
s= "Title: " +getjson.getString("tender_title")+
"\n\nTender id: " +getjson.getString("tender_id")+
"\n\nReference no:\n"+getjson.getString("tender_reference_no")+
"\n\nQuantity: " +getjson.getString("tender_item_details_quantity");
}
TextView txt=(TextView) findViewById(R.id.textView1);
txt.setText(s);
在上面的代碼是fine..that集文本視圖所有的價值,但我想改變的「標題」,「投標ID」色彩,「數量」 etc ..從上面的字符串s請幫忙
什麼字符串包含,黑色,白色,或十六進制顏色值? –
@Arju thanx的回覆..現在這個textview設置爲白色,但我想改變這個文本的一部分爲黃色.. – Brett
@Brett如果你的問題得到解決,你應該選擇最有用的答案作爲一種良好的做法。 –