0

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");

    }
}
4

2 回答 2

1

你可以尝试改变

String S = "  • The provisions of section...."

String S = "  • The provisions of section...."

因为您使用的版本肯定行不通。

如果做不到这一点,您可以通过使用<ul><li>元素来使用 html 无序列表:

String S = "<ul><li> The provisions of section....</li></ul>"
于 2013-05-17T11:04:32.100 回答
0

是的,Android 中没有真正好的排版功能——没有完整的理由、项目符号、前导等——所以我看到的一件事就是简单地使用 WebView,然后插入正确的 HTML,例如:

 <ul>
 <li>Item 1</li>
 <li>Item 2</li>
 </ul>

我不知道直接 HTML 是否会像您要求的那样悬挂缩进,但是您可能可以使用 Android 的 WebView 支持的 CSS 属性。

于 2013-05-17T11:21:01.697 回答