gpt4 book ai didi

java - ScrollView - 如何在 ScrollView 中启用水平滚动

转载 作者:行者123 更新时间:2023-12-01 17:18:55 26 4
gpt4 key购买 nike

所以我有一个 ScrollView ,里面有一个 TextView 。当文本的String长于屏幕宽度时,它只是在下一行中移动。我想通过在 ScrollView 中添加 Horizo​​ntalScrolling 来避免新的衬里。另外,我想让文本可选择,以便用户可以复制文本。可能吗?

        <ScrollView
android:id="@+id/scroll_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">

<TextView
android:id="@+id/text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="15dp"
android:layout_marginEnd="15dp"
android:layout_marginBottom="15dp"
android:ellipsize="end"
android:textIsSelectable="true"
android:justificationMode="inter_word"
android:lineSpacingExtra="5dp"
android:textSize="15sp"
tools:targetApi="o" />
</ScrollView>

最佳答案

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent"
android:scrollbars="vertical">

<HorizontalScrollView
android:layout_width="match_parent" android:layout_height="wrap_content">

<FrameLayout android:layout_width="320dp"
android:layout_height="match_parent"
android:background="#000000"/>

</HorizontalScrollView>

</ScrollView>

关于java - ScrollView - 如何在 ScrollView 中启用水平滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61336734/

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