如何使用 java for android 在 TextView 上提供滚动视图

发布于 2024-12-29 06:55:11 字数 597 浏览 0 评论 0原文

嗨,我的代码任何人都可以告诉我如何在 textview 中为 android 滚动 text

physical = new TextView(this);
positionView.setTextView(getResources().getString(R.string.textviewp), 0,"Physical", physical, ImageType.TEXT_VIEW_GOAL);
physical.setId(R.id.physical);
physical.setTextColor(Color.BLACK);
physical.setTextSize(18);
physical.setTypeface(fonts);
physical.setBackgroundColor(Color.parseColor("#FFFFFF"));
physical.setOnClickListener(onClickListener);
physical.setOnLongClickListener(OnLongClickListener);
ScrollGoalRelativeLayout.addView(physical);

Hi my code can any any one tell me how to scroll text in textview for android.

physical = new TextView(this);
positionView.setTextView(getResources().getString(R.string.textviewp), 0,"Physical", physical, ImageType.TEXT_VIEW_GOAL);
physical.setId(R.id.physical);
physical.setTextColor(Color.BLACK);
physical.setTextSize(18);
physical.setTypeface(fonts);
physical.setBackgroundColor(Color.parseColor("#FFFFFF"));
physical.setOnClickListener(onClickListener);
physical.setOnLongClickListener(OnLongClickListener);
ScrollGoalRelativeLayout.addView(physical);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

⒈起吃苦の倖褔 2025-01-05 06:55:11

在layout.xml文件中设置textview的android:maxLines和android:scrollbars = "vertical"属性。

之后在代码中使用 TexView.setMovementMethod(new ScrollingMovementMethod())

set the android:maxLines and android:scrollbars = "vertical" properties of textview in xml file in layout.

After that use the TexView.setMovementMethod(new ScrollingMovementMethod()) in your code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文