ViewFlipper实现轮播滚动公告

对于ViewFlipper的使用还是很简单的,有感兴趣的可以查看下源码。以下实现的是垂直翻滚,如果想要修改的话,改一下动画效果即可。


1.直接上代码:

xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    android:orientation="vertical">

    <TextView
        android:id="@+id/title_name"
        android:layout_width="match_parent"
        android:layout_height="46dp"
        android:background="@color/title"
        android:gravity="center"
        android:text="android快速开发工具类"
        android:textColor="@color/white"
        android:textSize="16sp" />

    <ViewFlipper
        android:id="@+id/marquee_viewflipper"
        android:layout_width="match_parent"
        android:layout_height="30dp"
        android:background="#e8e8e8"
        android:autoStart="true"
        android:flipInterval="2000"
        android:inAnimation="@anim/anim_in"
        android:outAnimation="@anim/anim_out"
        >
    ViewFlipper>


    <android.support.v7.widget.RecyclerView
        android:id="@+id/recyclerview"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
LinearLayout>
1.autoStart 是否自动开启轮播,这个方法设置为true的时候在源码中,也可以调用java代码setAutoStart(boolean autoStart)
2.flipInterval 轮播时间
3.inAnimation ViewFlipper中子View进入时的动画
4.outAnimation ViewFlipper中子View离开时的动画
 
  

2.

mViewFlipper = (ViewFlipper)findViewById(R.id.marquee_viewflipper);
LinearLayout shenzhenIndexLayout = (LinearLayout) View.inflate(this, R.layout.marquee_layout_item1, null);
LinearLayout shangzhenIndexLayout = (LinearLayout) View.inflate(this, R.layout.marquee_layout_item2, null);
LinearLayout cyIndexLayout = (LinearLayout) View.inflate(this, R.layout.marquee_layout_item3, null);

mViewFlipper.addView(shenzhenIndexLayout);
mViewFlipper.addView(shangzhenIndexLayout);
mViewFlipper.addView(cyIndexLayout);

3. anim_in.xml

xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">

    <translate
        android:duration = "1000"
        android:fromYDelta = "100%p"
        android:toYDelta = "0"
        />
set>

4.anim_out.xml

xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
    <translate
        android:duration="1000"
        android:fromYDelta="0"
        android:toYDelta="-100%p" />
set>

5.marquee_layout_item1.xml   marquee_layout_item2.xml  marquee_layout_item3.xml

xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="公告1"
    />
LinearLayout>

以上三个布局文件类似。


你可能感兴趣的:(android,计算机)