ImageSwitcher:
站在用戶的角度思考問題,與客戶深入溝通,找到黑河網(wǎng)站設計與黑河網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設計與互聯(lián)網(wǎng)技術結合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:成都網(wǎng)站設計、網(wǎng)站建設、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣、域名申請、虛擬空間、企業(yè)郵箱。業(yè)務覆蓋黑河地區(qū)。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); //設置創(chuàng)建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; //結束位置 //觸屏事件監(jiān)聽方法 @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
設置圖片資源修改為設置文本即可
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。
新聞名稱:android的ImageSwitcher和TextSwitcher-創(chuàng)新互聯(lián)
地址分享:http://jinyejixie.com/article48/ghgep.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供標簽優(yōu)化、微信公眾號、網(wǎng)站策劃、品牌網(wǎng)站設計、軟件開發(fā)、商城網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)