0

我正在尝试制作一个 android web 应用程序。我的第一页 index.html 只包含一个列表:

<body>
    <ul>
    <li>French  </li>
    <li>English </li>
    <li>Spanish </li>
    <li>Hindi   </li>
    <li>Urdu    </li>
    <li>Bengali </li>
</ul>
</body>

我使用了以下样式:

* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);  
}
html
{
    background: black;
    opacity: 0.9;
     border-style : none;
    width:100%;
    }

li
{

    height:10%;
    color: white;
    list-style: none;
}

但是当我运行我的应用程序时,它会显示一个厚厚的白色边框。如何删除此边框?这是我的活动类代码:

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        WebView wv=(WebView)findViewById(R.id.wb);
        WebSettings webSettigs= wv.getSettings();
        wv.setWebChromeClient(new WebChromeClient());
        wv.loadUrl("file:///android_asset/www/index.html");

    }


    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

}
4

0 回答 0