2013-05-17 62 views
0

String S =「• 1961年所得稅法第40(a)(ia)條的規定不僅適用於顯示爲應付的金額資產負債表日期,但適用於上年度有關支出,並在上一年度實際支付的支出。如何顯示項目符號在android webview

這裏•是子彈,但我無法顯示子彈在Android網絡視圖貝洛是我的代碼,我已經厭倦瞭解碼此,但林無法顯示,請告訴我怎麼會對其進行修復,其中正在做錯誤

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

    } 
} 
+0

我已經修復了我的問題使用String re =「(?:&#(\\ d +);)」;這種模式 – user2372154

回答

1

你可以試試改變

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

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

爲你使用肯定是行不通的版本。

如果做不到這一點,你可以通過使用<ul>使用HTML無序列表和<li>元素:

String S = "<ul><li> The provisions of section....</li></ul>" 
0

是啊,有沒有真正的Android良好的排版功能 - 沒有充分的理由,子彈,領先,等等 - 這樣一兩件事,我已經看到了建議,這是簡單地使用網頁視圖,然後只需插入適當的HTML,例如:

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

我不知道直接的HTML是否會像你問的那樣懸掛縮進,但是可能有一個CSS屬性可以用來支持Android的WebView。

相關問題