0
我正在使用volley來獲取網站的Html內容。我正在使用以下代碼。如何在TextView中添加換行符
RequestQueue queue = Volley.newRequestQueue(this);
StringRequest stringRequest = new StringRequest(Request.Method.GET, sourl,
new Response.Listener<String>() {
@Override
public void onResponse(String response) {
String highlighted = highlighter.highlight("java", response.toString());
mTextView.setText(Html.fromHtml(highlighted));
//mTextView.setText(response.toString());
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
mTextView.setText("That didn't work!");
}
});
// Add the request to the RequestQueue.
queue.add(stringRequest);
但我希望不是在一個時間來加載通過在線網站線的HTML內容,我想在結束每行設置成EditText
前加斷線之後,我不想換字。 電流輸出如下圖所示。
其實我不換行 –
發佈你的XML文件 – LumberHack
其實我已經通過添加textView.scrollHorizontally(false)來完成了; –