为什么我无法在文本视图上启用水平滚动?



这是文本视图的XML代码。但是,每当一条线熄灭时,我都无法水平滚动。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_bleapp"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.inti.cmnb.bleapp.BLEApp">

    <HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/scrollLogger"
        >
    <TextView
        android:id="@+id/logger"
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/btnTester"
        android:scrollHorizontally="true"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:layout_alignParentTop="true" />
    </HorizontalScrollView>

    <Button
        android:id="@+id/btnTester"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_toEndOf="@+id/scrollLogger"
        android:text="SCAN"
        android:layout_alignParentStart="true" />
</RelativeLayout>

添加水平旋转后,现在不仅不仅滚动宽度很小,因此我可以看到我的文本更少。

删除xmlns:android =" http://schemas.android.com/apk/res/android"

 <HorizontalScrollView
        android:id="@+id/scrollLogger"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

您可以使用以下方式:

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Put your very long text here..."
            android:id="@+id/txtNuus"
            android:textColor="#000000"
            android:singleLine="true"
            android:ellipsize="marquee"
            android:marqueeRepeatLimit="marquee_forever"
            android:focusable="true"
            android:focusableInTouchMode="true"
            android:scrollHorizontally="true"
            android:layout_gravity="top"
            android:gravity="center_vertical"/>

最新更新