0
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle(getString(R.string.update_dialog_tittle));
builder.setMessage(updateInfo.getDescription());
builder.setCancelable(false);
updateInfo時是JavaBean的,是通過讀取XML的網站,該網站XMLAlertDialog.Builder setMessage的文字換行
<?xml version="1.0" encoding="UTF-8"?><updateInfo><version>1.2</version><url>http://localhost:8080/test.apk</url><description>update\n1:test\n2:test\n3test\n4:test</description></updateInfo>
的文本顯示屏顯示「更新\ N1獲得:測試\ N2:試驗\ N3測試\ N4:測試」,\ n顯示,沒有包裝效果
你是什麼意思是什麼呢?如果你想分析'xml'數據,你需要閱讀[SAX](https://developer.android.com/reference/org/xml/sax/package-summary.html) – SilentKnight 2015-04-03 02:17:14