首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

android水准循环滚动控件

2013-09-09 
android水平循环滚动控件CycleScrollView.javaRelativeLayout xmlns:androidhttp://schemas.android.co

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>



热点排行