我想在android中实现换行文本。我正在使用以下属性,但仍然无法实现
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textview01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:ellipsize="none"
android:scrollHorizontally="false"
android:text="@string/hello" /> // @String/hello <string name="hello">Hello,How are you world whatsup</string>
有人请帮忙吗?
答案 0 :(得分:0)
使用此
<TextView
android:id="@+id/textview01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="none"
android:scrollHorizontally="false"
android:text="@string/hello" />
答案 1 :(得分:0)
我通过替换@ string / hello =来试试你的代码。“你好,你好世界怎么样。你好,你今天怎么样?”它运作良好。
可能是您布局中的其他视图正在影响您的TextView