在android中的webview中以本地语言加载本地html文件

时间:2016-03-30 06:27:15

标签: android

我正在为农民开发一个Android信息应用程序。信息将以当地印度语言提供。我正在使用webview。信息存储在html文件中。问题是用当地语言的信息不是可见。怎么解决这个问题?

WebView mWebView;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    // Getting reference to WebView of the activity_main layout
    mWebView = (WebView) findViewById(R.id.webview);

    // Loading an html page into webview
    mWebView.loadUrl("file:///android_asset/text.html");
}

活动主要

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res   /android"
     xmlns:tools="http://schemas.android.com/tools"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     tools:context=".MainActivity" >

    <WebView
    android:id="@+id/webview"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="@string/hello_world" />

    </RelativeLayout>

html文件

    <html>
    <head>
    <meta http-equiv="content-type" content="text/html;" charset="UTF-8">
    <style>
    /** Specify a font named "MyFont",
    and specify the URL where it can be found: */
     @font-face {
                font-family: "MyFont";
                src: url('file:///android_asset/b.ttf');
            }
            h3 { font-family:"MyFont"}
        </style>
</head>
<body>
    <h3>
        ಪ್ರಶಾಂತ
    </h3>
</body>

3 个答案:

答案 0 :(得分:0)

你的意思是说你想用区域语言展示helloworld。为此,您需要创建res / values-文件夹。 android框架会自动选择正确的语言 细节: http://developer.android.com/guide/topics/resources/localization.html

答案 1 :(得分:0)

以下是一些可能对您有帮助的stackoverflow帖子。

How to show local languages font.

How to use custom font with webview.

答案 2 :(得分:0)

Try this

add this statement to your onCreate().

mWebView.getSettings().setJavaScriptEnabled(true);


@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    // Getting reference to WebView of the activity_main layout
    mWebView = (WebView) findViewById(R.id.webview);

    mWebView.getSettings().setJavaScriptEnabled(true);

    // Loading an html page into webview
    mWebView.loadUrl("file:///android_asset/text.html");
}