android的ImageSwitcher和TextSwitcher

來源:互聯網
上載者:User

標籤:android的imageswitcher和textswitcher

ImageSwitcher:

activity_main.xml

<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"    android:paddingBottom="@dimen/activity_vertical_margin"    android:paddingLeft="@dimen/activity_horizontal_margin"    android:paddingRight="@dimen/activity_horizontal_margin"    android:paddingTop="@dimen/activity_vertical_margin"    tools:context="com.example.imageswitch.MainActivity" >    <ImageSwitcher        android:id="@+id/imageSwitcher1_1"        android:layout_width="match_parent"        android:layout_height="match_parent"        android:layout_alignParentTop="true"       >    </ImageSwitcher></RelativeLayout><!--    android:inAnimation="@android:anim/slide_in_left"        android:outAnimation="@android:anim/slide_out_right"         -->

MianActivity

package com.example.imageswitch;import android.app.Activity;import android.os.Bundle;import android.view.Menu;import android.view.MenuItem;import android.view.MotionEvent;import android.view.View;import android.view.View.OnTouchListener;import android.widget.ImageSwitcher;import android.widget.ImageView;import android.widget.ViewSwitcher.ViewFactory;public class MainActivity extends Activity implements ViewFactory ,OnTouchListener{private ImageSwitcher imageSwitch;private int [] images={R.drawable.kobe0,R.drawable.kobe1,R.drawable.kobe3,R.drawable.kobe4,R.drawable.kobe6,};private int index; //要顯示的圖片的下標@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);imageSwitch=(ImageSwitcher) findViewById(R.id.imageSwitcher1_1);//設定建立ImageView的工廠imageSwitch.setFactory(this);//設定觸屏事件imageSwitch.setOnTouchListener(this);}//ViewFactory工廠介面的方法,通過這個方法,給ImageSwitch組件提供兩個@Overridepublic View makeView() {// TODO Auto-generated method stubImageView imageView=new ImageView(this);imageView.setImageResource(images[0]);return imageView;}//定義兩個x座標點 float startx=0.0F;      //開始位置 float endx=0.0F;        //結束位置//觸屏事件監聽方法@Overridepublic boolean onTouch(View v, MotionEvent event) {if(event.getAction()==MotionEvent.ACTION_DOWN){startx=event.getX();return true;}else if(event.getAction()==MotionEvent.ACTION_UP){endx=event.getX();//判斷左滑動if(startx-endx>20){index=(index+1)<(images.length-1)?++index:0;imageSwitch.setImageResource(images[index]);//在代碼中設定動畫效果imageSwitch.setInAnimation(this, android.R.anim.fade_in);imageSwitch.setOutAnimation(this, android.R.anim.fade_out);}//判斷右滑動if(endx-startx>20){index=(index-1)>0?--index:images.length-1;imageSwitch.setImageResource(images[index]);imageSwitch.setInAnimation(this, android.R.anim.slide_in_left);imageSwitch.setOutAnimation(this, android.R.anim.slide_out_right);}}return true;}}

TextSwitcher與ImageSwitcher類似,只需要將ImageSwitcher換成TextSwitcher

設定圖片資源修改為設定文本即可

本文出自 “matengbing” 部落格,請務必保留此出處http://matengbing.blog.51cto.com/11395502/1882816

android的ImageSwitcher和TextSwitcher

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.