我想要显示2-3页长的文本,尝试使用滚动视图但是文本被切断,我是开发中的新手,请举一个简单的例子,thanx
答案 0 :(得分:9)
在XML中,编写此TextView:
<TextView
android:id="@+id/txtDetails"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxLines="7"
android:scrollbars="vertical"
android:text="TextView"
/>
在Activity
中,写下:
TextView txtDetails = (TextView) findViewById(R.id.txtDetails);
txtDetails.setText("Your Text");
txtDetails.setMovementMethod(new ScrollingMovementMethod());
这将滚动TextView
中的文字。无需写入ScrollView
。
答案 1 :(得分:4)
文字被切断意味着你遇到了什么问题。请尝试以下代码。它有效......
使用xml代码:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="HERE I TOOK NEARLY 3-4 PAGES OF DOCUMENT. IT WORKED" />
</ScrollView>
如果您要动态创建,请按照以下代码操作: main.java:
oncreate()
{
ScrollView sv=(ScrollView)findViewById(R.id.scrollView1);
TextView tv=new TextView(this);
tv.setText("just keep the text what you want here");
sv.addView(tv);
}
将xml更改为以下内容:
main.xml中
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
</ScrollView>
试试这段代码。它有效......
答案 2 :(得分:4)
这样可行,诀窍是在滚动视图中滚动你想要的内容。
<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" >
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/text" />
</LinearLayout>
</ScrollView>
</RelativeLayout>