我在我的RecyclerView中有一個句子,其中有3個TextView
。圖爲象下面這樣:在TextView Android中添加另一個字
在那張照片,我有一句話在3 TextView
,有「1」「HOT,更辣椒」和「比薩」。這是我的RecyclerView綁定代碼:
try {
view.txtArticlesName.setText(/*orderList.getJSONObject(position).getString("quantityValue") +*/
/*orderList.getJSONObject(position).getString("spesial-request").replaceAll("[\\\"\\[\\]]", "") + */
orderList.getJSONObject(position).getString("bezeich"));
view.txtQty.setText(orderList.getJSONObject(position).getString("quantityValue"));
view.txtReqList.setText(orderList.getJSONObject(position).getString("spesial-request").replaceAll("[\\\"\\[\\]]", ""));
} catch (JSONException e) {
e.printStackTrace();
}
我想參加所有的TextView
只有一個「TextView`動態地。我會嘗試這個辦法:
view.txtArticlesName.setText(/*orderList.getJSONObject(position).getString("quantityValue") +*/
/*orderList.getJSONObject(position).getString("spesial-request").replaceAll("[\\\"\\[\\]]", "") + */
orderList.getJSONObject(position).getString("bezeich"));
但它不能正常工作,它不是將數據綁定,所以TextView
只顯示默認的文本「Hello World」。 TextView
可以做到這一點嗎?我也讀了Spannable,但我不知道它的工作如何在一個TextView
中添加新詞。或者有另一種方法可以做到這一點?任何建議和答案將有助於我。以前感謝。
也許你有例外。並且此代碼從不執行。只是看到日誌貓或使用日誌,以確保所有此代碼執行 –
@farazkhonsari我的日誌沒有顯示任何錯誤。當我點擊比薩或其他食物從另一個RecyclerView itss成功廣告到這個RecyclerView,但TextView只顯示「Hello World」 –