我正在尝试在textview中显示代码段。但我不能在textview中水平自动滚动长文本行。
代码:
TextView code = new TextView(getActivity());
TableRow.LayoutParams paramsExample = new TableRow.LayoutParams(TableRow.LayoutParams.MATCH_PARENT,TableRow.LayoutParams.WRAP_CONTENT);
code.setBackgroundColor(getResources().getColor(android.R.color.black));
code.setPadding(5, 5, 5, 5);
code.setTextColor(getResources().getColor(android.R.color.white));
code.setTextSize(TypedValue.COMPLEX_UNIT_SP,12);
code.setClickable(true);
code.setLayoutParams(paramsExample);
setCode(code, R.raw.codesnippet);
ll.addView(code);
我在fragment.fragment_layout.xml中创建了这个textview:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/fragment_ll"
android:orientation="vertical">
</LinearLayout>
我正在一个活动中开始这个片段 coordinatorlayout&gt; nestedscrollview&gt; linearlayout(片段容器)
每个人的宽度大小是“匹配父母”
这是setcode方法:
public void setCode(TextView tv, int rawId) {
Resources res = getResources();
BufferedReader input = new BufferedReader(new InputStreamReader(
res.openRawResource(rawId)));
StringBuffer sb = new StringBuffer();
try {
String line;
while ((line = input.readLine()) != null) {
sb.append(line);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
input.close();
} catch (IOException e) {
e.printStackTrace();
}
}
Spanned spannedCode = Html.fromHtml(sb.toString());
tv.setText(spannedCode);
}
我从vim:toHtml获得了代码片段(codesnippet.txt)。
但它不会水平滚动。我该怎么做才能让它像webview一样自动滚动?
在HorizontalScrollView和code.setHorizontallyScrolling(true)之后:
水平滚动在单行中工作正常。我需要将代码片段显示为块。
答案 0 :(得分:0)
您的TextView
应位于HorizontalScrollView
内,如下所示:
<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView android:layout_width="40dp"
android:layout_height="wrap_content"
android:scrollHorizontally="true"
android:text="Horizontal scroll view"/>
</HorizontalScrollView>