gpt4 book ai didi

android - android TextView 中的可滚动背景

转载 作者:行者123 更新时间:2023-11-29 14:03:26 24 4
gpt4 key购买 nike

我有一个平铺背景的 TextView 定义为

<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/tile"
android:tileMode="repeat" />

工作正常,但问题是当我向下滚动阅读更多文本时,背景停留在同一个地方,而我希望它随文本滚动。任何想法表示赞赏。

TextView 定义为:

<view xmlns:android="http://schemas.android.com/apk/res/android"
class="com.example.android.notepad.NoteEditor$LinedEditText"
android:id="@+id/note"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/app_bg_r"
android:textColor="#666666"
android:padding="5dp"
android:scrollbars="vertical"
android:fadingEdge="vertical"
android:gravity="top"
android:textSize="22sp"
android:lineSpacingExtra ="7sp"
android:capitalize="sentences" />

LinedEditText 类除了设置自定义字体外什么都不做。

TextView 在Activity的onCreate with中设置

setContentView(R.layout.note_editor);

最佳答案

可能有一种方法可以仅使用 TextView 使其工作,但如果没有其他人提出解决方案,我建议将您的 TextView 包装在某种 ViewGroup(FrameLayout、RelativeLayout、LinearLayout 等)中,然后包装带有 ScrollView 的那个。它可能不是最佳解决方案,因为它增加了很多 View ,但它可能会起作用。

将背景设置为 ViewGroup 并使其在 TextView 周围包裹内容。让 ScrollView 处理滚动。

您可以在没有额外 ViewGroup 的情况下尝试查看背景是否适用于 ScrollView,但您可能会再次遇到同样的问题。

<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/app_bg_r" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
</ScrollView>

关于android - android TextView 中的可滚动背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8377076/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com