0

我有一些如图 1 所示的类别。我已经用于HorizontalScrollView类别滚动,但是当滚动滚动进度显示在 textview 的底部时(如图所示)。实际上不想显示这个,也想放两个按钮左右滚动(如图2所示)。我已经搜索了很多但没有这样做,如果您有任何想法,请建议我。图。1 在此处输入图像描述

在此处输入图像描述

图2

4

3 回答 3

1

您可以简单地在 Horizo​​ntalScrollView 定义中删除滚动条:

android:scrollbars="none"
于 2012-09-04T07:08:20.457 回答
0

试试这个属性android:scrollbars="none",看看它是否有效。=)

于 2012-09-04T07:07:31.773 回答
0

将此属性放在 Horizo​​ntalScrollView

android:scrollbars="none" in your xml file for disable scrollbar as picture 1.

<HorizontalScrollView android:id="@+id/horizontalScroll"
     android:layout_width="fill_parent"
     android:layout_height="wrap_content" 
     android:scrollbars="none" >

尝试按照 xml 获取图 2 的解决方案。

<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="match_parent" >

    <ImageView android:src="@drawable/ic_launcher" 
        android:layout_height="wrap_content" 
        android:layout_width="wrap_content" 
        android:layout_alignParentLeft="true"/>

    <ImageView android:src="@drawable/ic_launcher" 
        android:layout_height="wrap_content" 
        android:layout_width="wrap_content" 
        android:layout_alignParentRight="true"/>         

    <HorizontalScrollView android:id="@+id/horizontalScroll"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" 
        android:scrollbars="none" 
        android:fadingEdgeLength="20dp">
</HorizontalScrollView>
</RelativeLayout>

检查此链接

于 2012-09-04T07:07:34.583 回答