3

自動ハイフネーションを使用して、Android のテキストを完全に正当化しようとしています。here で説明されているように、WebView を使用して完全な正当化を達成しました。Android での自動ハイフネーションに関するいくつかのスレッドを読みましたが、どれも WebViews には適用されません。新しい CSS3 hyphens:auto (-webkit-hyphens:auto を含む) を使用してみましたが、Android WebKit はまだサポートしていません。

ハイフェネーター JavaScript の使用について言及しているブログ投稿を見つけましたが、実装方法がわかりません (JavaScript と HTML は次の作業リストにあります)。.js ファイルのサイズが大きいため、単純に使用したくありませんwebView.loadUrl("javascript:someFunction()");

現在使用しているコードは次のとおりです。

public class TestWebView extends Activity {
@Override
public void onCreate (Bundle savedState) {
    WebView webView;
    super.onCreate(savedState);
    webView = new WebView(this);
    setContentView(webView);
    WebSettings webSettings = webView.getSettings();
    webSettings.setJavaScriptEnabled(true);
    webView.loadUrl("file:///android_asset/WorkingExample.html");
    }
}

HTMLは次のとおりです。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
    <head>
        <title>Hyphenator.js</title>
        <meta http-equiv="content-type" content="text/html; charset=UTF-8">
        <style type="text/css">
            body {
                width:30%;
                margin-left:35%;
                margin-right:35%;
            }
            .text {
                text-align:justify;
            }
    </style>
    <script src="Hyphenator.js" type="text/javascript"></script>
    <script type="text/javascript">
        Hyphenator.config({
            displaytogglebox : true,
            minwordlength : 4
        });
        Hyphenator.run();
        </script>
    </head>
    <body>
        <h1>Example of using Hyphenator.js</h1>
        <h2>Deutsch</h2>
        <p class="hyphenate text" lang="de">Deutschsprachige Beispieltexte haben natürlicherweise längere Wortzusammensetzungen als englischsprachige. Aber auch <span lang="en">“hyphenation”&lt;/span> ist ein ziemlich langes Kompositum.</p>
        <p class="hyphenate text" lang="de">Verändern Sie die Fenstergrösse um den Effekt der Silbentrennung zu sehen.</p>
        <h2>English</h2>
        <p class="hyphenate text" lang="en">English words are shorter in the average then german words. <span lang="de">«Silbentrennungsalgorithmus»</span> for example is quite long.</p>
        <p class="hyphenate text" lang="en">Resize the window to see hyphenation in effect.</p>
        <h2>Links</h2>
        <p class="hyphenate text" lang="en">Not only words but also links like <a href="http://code.google.com/p/hyphenator/">http://code.google.com/p/hyphenator/</a> are processed. But in a special manner (using zero width space).</p>
    </body>
</html>

html ファイルと一緒に Hyphenator.js ファイルが保存されます。コンピューターのブラウザーで HTML ファイルを開くと期待どおりに動作しますが、電話ではうまくいきません。コンピューター ブラウザー (FF) と WebView の比較 最終的には、テキストを動的に生成したいのですが、これを機能させるだけでも大きな助けになります。ありがとう。

4

2 に答える 2

0

次のライブラリはハイフネーションをサポートしています。すべてのタイプのテキスト配置 (左/右/中央/両端揃え) とハイフネーションが自動的に行われます。すべての言語が追加されているわけではありませんが、必要に応じて追加できます。このライブラリは、NO WEBVIEWSおよびSUPPORTS SPANNABLESを使用せず、 LONG TEXTを許可します。

ライブラリ: https://github.com/bluejamesbond/TextJustify-Android

アンドロイド: 2.2 から 5.X

設定

DocumentView documentView = addDocumentView(new StringBuilder("Your long text content"), DocumentView.PLAIN_TEXT);
documentView.getDocumentLayoutParams().setTextAlignment(TextAlignment.JUSTIFIED);
documentView.getDocumentLayoutParams().setHyphenator(new Hyphenator(HyphenPattern.PT));
documentView.getDocumentLayoutParams().setHyphenated(true);
于 2015-01-14T21:05:39.373 に答える
0

だからあなたは持ってWorkingExample.htmlHyphenator.jsますfile:///android_asset/か?de.js「patterns」フォルダをダウンロードするのを忘れたと思います(あなたの場合は必要ですen-us.jsfile:///android_asset/patterns/ここで入手できます。

更新: 必要なものをすべて入手して、アセットに入れます。

ここに画像の説明を入力

WorkingExample.html:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
    "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
    <head>
        <title>Hyphenator.js</title>
        <meta http-equiv="content-type" content="text/html; charset=UTF-8">
        <script src="Hyphenator.js" type="text/javascript"></script>
        <script type="text/javascript">
            Hyphenator.config({
                minwordlength : 4
            });
        </script>
    </head>
    <body>
        <p id="text" class="hyphenate text" lang="en"></p>
    </body>
</html>

主な活動:

public class MainActivity extends Activity {

    WebView mWebView;
    String mText;

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

        mText = "English words are shorter in the average then german words. <span lang=\"de\">Silbentrennungsalgorithmus</span> for example is quite long.";

        mWebView = (WebView) findViewById(R.id.mWebView);
        mWebView.getSettings().setJavaScriptEnabled(true);
        mWebView.loadUrl("file:///android_asset/WorkingExample.html");
        mWebView.setWebViewClient(new WebViewClient() {
            @Override
            public void onPageFinished(WebView view, String url) {
                mWebView.loadUrl("javascript:(function() { "
                        + "document.getElementById('text').innerHTML='" + mText
                        + "';" + "Hyphenator.run();" + "})()");
            }
        });
    }

    @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;
    }

}

アクティビティ_メイン:

<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"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <WebView
        android:id="@+id/mWebView"
        android:layout_width="100dp"
        android:layout_height="match_parent"
        android:layout_centerHorizontal="true" />

</RelativeLayout>
于 2013-08-03T13:24:28.100 に答える