6

我正在编写一个在屏幕上弹出文本的应用程序,通常它比 1 行长。如果一行的最后一个单词太长而无法放入其中,textview 会将其放在下一行的开头。有没有办法修改这种行为?当最后一个词很长时,结果是可怕的。

基本上我想实现这样的目标

|Lorem ipsum dolor sit amet, consecte|
|tur adipiscing elit. Lorem ipsum dol |
|或者坐在一起,consectetur adipiscing |
|精英。|

而不是我现在得到的。

|Lorem ipsum dolor sit amet, |
|consectetur adipiscing 精英。洛雷姆 |
|ipsum dolor sit amet, consectetur |
| 肥胖精英。|

谢谢!

附加信息

我有这个 textview 显示具有不同长度的随机引号。我需要的是一种分割每一行最后一个单词的方法

我正在寻找一种方法来做这样的事情

这是布局xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical" >

<TextView
    android:id="@+id/title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/title" />

<TextView
    android:id="@+id/quote"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/quote" />

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:onClick="refresh"
    android:text="@string/tellmemore" />

4

5 回答 5

2

我决定切换到 WebView,因为使用 HTML 我可以获得理由。你可以在这里这里阅读它,如果你想注入 css,这是一个很好的教程。
如果您正在寻找 hypenation 也许您可以查看Google 的 hypenator.js

所以,在这里回答自己就是解决方案!

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFFFD0" >

<WebView
    android:id="@+id/webview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" />

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:onClick="refresh"
    android:text="@string/tellmemore" />

并且在活动中

    ...
    WebView mWebView;
    @Override
    protected void onCreate(Bundle savedIstanceState) {
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        super.onCreate(savedIstanceState);
        setContentView(R.layout.webview);
        mWebView = (WebView) findViewById(R.id.webview);
        load();}

        public void load() {
        // some other code to parse the string from a database
        String text = "<html> <head>" + tokens[1].toString()"</head><body>" + "<p align=\"justify\">"+ tokens[0].toString() + "</p> " + "</body></html>";       
        mWebView.loadData(text, "text/html", "utf-8");}
于 2013-10-06T13:53:05.097 回答
2

尝试这个

 private String getWidthFitString(String input) {
    Paint paint = text.getPaint();
    // you can define max width by yourself
    int maxWidth = getContentMaxWidth();
    float width = paint.measureText(input);
    if (width > maxWidth) {
        List<String> words = Arrays.asList(input.split("\\s"));
        int breakLinePosition = 0;
        String toBreakLineText;
        List<String> toBreakLineWords = new ArrayList<>();
        while (breakLinePosition < words.size()) {
            toBreakLineWords.add(words.get(breakLinePosition));
            toBreakLineText = TextUtils.join(" ", toBreakLineWords);
            float currentWidth = paint.measureText(toBreakLineText);
            if (currentWidth > maxWidth) {
                break;
            }
            breakLinePosition ++;
        }
        if (breakLinePosition > 1) {
            toBreakLineWords.remove(toBreakLineWords.size() - 1);
            toBreakLineText = TextUtils.join(" ", toBreakLineWords);
            List<String> fromBreakLineWords = new ArrayList<>();
            for (int i = breakLinePosition; i < words.size(); i++) {
                fromBreakLineWords.add(words.get(i));
            }
            return toBreakLineText + "\n" + getWidthFitString(TextUtils.join(" ", fromBreakLineWords));
        } else {
            return input;
        }
    }
    return input;
}
于 2018-01-05T05:44:29.443 回答
1

您可以以编程方式执行此操作。做就是了:

myString.replace(" ", "\u00A0");
myTextView.setText(myString);
于 2016-01-15T10:45:33.520 回答
0
// trh this
<TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Lorem ipsum dolor sit amet,consectetur adipiscing elit. Lorem ipsum dolor sit amet, consectetur adipiscing elit."
        android:gravity="clip_horizontal"/>
于 2013-10-05T12:53:50.560 回答
-2

使用 android:maxLine = 行数

于 2013-10-05T12:59:58.617 回答