首页 > 代码库 > 文件管理器-HorizontalScrollView控件

文件管理器-HorizontalScrollView控件

横向滚动条,用于显示目录层次结构。代码如下:

<HorizontalScrollView            android:layout_width="match_parent"            android:layout_height="match_parent"            android:layout_weight="1.0" >            <LinearLayout                android:id="@+id/pathLayout"                android:layout_width="wrap_content"                android:layout_height="match_parent"                android:orientation="horizontal" >            </LinearLayout>        </HorizontalScrollView>

 

文件管理器-HorizontalScrollView控件