这是TextView的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>
现在添加HorizontalScrollView后不仅不会水平滚动宽度非常小,所以我可以看到更少的文字。
答案 0 :(得分:0)
删除xmlns:android =&#34; http://schemas.android.com/apk/res/android"来自HorizontalScrollView
<HorizontalScrollView
android:id="@+id/scrollLogger"
android:layout_width="match_parent"
android:layout_height="match_parent" >
答案 1 :(得分:0)
你也可以使用它:
<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"/>