91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

android的ImageSwitcher和TextSwitcher

發布時間:2020-07-25 17:23:49 來源:網絡 閱讀:353 作者:matengbing 欄目:移動開發

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.p_w_picpathswitch.MainActivity" >

    <ImageSwitcher
        android:id="@+id/p_w_picpathSwitcher1_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.p_w_picpathswitch;

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 p_w_picpathSwitch;
	private int [] p_w_picpaths={
			R.drawable.kobe0,
			R.drawable.kobe1,
			R.drawable.kobe3,
			R.drawable.kobe4,
			R.drawable.kobe6,
	};
	private int index; //要顯示的圖片的下標

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		p_w_picpathSwitch=(ImageSwitcher) findViewById(R.id.p_w_picpathSwitcher1_1);
		//設置創建ImageView的工廠
		p_w_picpathSwitch.setFactory(this);
		//設置觸屏事件
		p_w_picpathSwitch.setOnTouchListener(this);
	}


	
	//ViewFactory工廠接口的方法,通過這個方法,給ImageSwitch組件提供兩個
	@Override
	public View makeView() {
		// TODO Auto-generated method stub
		ImageView p_w_picpathView=new ImageView(this);
		p_w_picpathView.setImageResource(p_w_picpaths[0]);
		return p_w_picpathView;
	}
	//定義兩個x坐標點
	 float startx=0.0F;      //開始位置
	 float endx=0.0F;        //結束位置
	//觸屏事件監聽方法
	@Override
	public 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)<(p_w_picpaths.length-1)?++index:0;
				p_w_picpathSwitch.setImageResource(p_w_picpaths[index]);
				//在代碼中設置動畫效果
				p_w_picpathSwitch.setInAnimation(this, android.R.anim.fade_in);
				p_w_picpathSwitch.setOutAnimation(this, android.R.anim.fade_out);
			}
			
			//判斷右滑動
			if(endx-startx>20){
				index=(index-1)>0?--index:p_w_picpaths.length-1;
				p_w_picpathSwitch.setImageResource(p_w_picpaths[index]);
				p_w_picpathSwitch.setInAnimation(this, android.R.anim.slide_in_left);
				p_w_picpathSwitch.setOutAnimation(this, android.R.anim.slide_out_right);
			}
		}
		return true;
	}
}

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

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

东明县| 凌海市| 济阳县| 灌云县| 厦门市| 赞皇县| 曲周县| 札达县| 定边县| 彭州市| 阜阳市| 惠安县| 三门县| 稻城县| 安新县| 廉江市| 鲁甸县| 吐鲁番市| 西平县| 西和县| 商丘市| 剑河县| 滦南县| 五台县| 太仆寺旗| 南安市| 黄骅市| 且末县| 峨边| 永胜县| 广汉市| 如皋市| 阜城县| 册亨县| 扶余县| 安福县| 银川市| 奎屯市| 义马市| 安平县| 汕尾市|