读书人

android水准循环滚动控件

发布时间: 2013-09-09 20:31:09 作者: rapoo

android水平循环滚动控件

CycleScrollView.java

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:tools="http://schemas.android.com/tools"    android:layout_width="match_parent"    android:layout_height="match_parent" >    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_centerHorizontal="true"        android:layout_centerVertical="true"        android:text="@string/hello_world"        tools:context=".MainActivity" />    <com.example.test.CycleScrollView        android:id="@+id/cycle_scroll_view"        android:layout_width="fill_parent"        android:layout_height="fill_parent"        android:background="#B9000000"        /></RelativeLayout>



读书人网 >Android

热点推荐