String S = " • 1961 年所得税法第 40(a)(ia) 条的规定不仅适用于资产负债表日显示为应付的金额,而且适用于适用于在上一年度随时应支付且在上一年度内实际支付的该等支出”;
这里• 适用于 Bullet 但我无法在 android web 视图中显示 Bullet Belo 是我的代码我已经厌倦了解码但我无法显示请告诉我将如何修复它在哪里做错了
public class MainActivity extends Activity {
WebView web1;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
String S = " • The provisions of section 40(a)(ia) of the Income Tax Act, 1961, are applicable not only to the amount which is shown as payable on the date of balance-sheet, but it is applicable to such expenditure, which become payable at any time during the relevant previous year and was actually paid within the previous year";
web1=(WebView)findViewById(R.id.webView1);
web1.loadData(S, "text/html", "UTF-8");
}
}