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

溫馨提示×

溫馨提示×

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

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

ImageSwitcher圖像切換器的使用方法

發布時間:2020-10-26 14:38:28 來源:億速云 閱讀:136 作者:Leah 欄目:開發技術

ImageSwitcher圖像切換器的使用方法?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

描述

在該實例中,提供一個圖片切換器和兩個點擊按鈕,用于切換圖片,并用一個TextView顯示圖片信息。其中,當前圖片若為最后一張,點擊下一張,則跳轉到第一張;同理,第一張圖片點擊上一張,則顯示最后一張圖片,循環查看當前圖片。

目標效果圖如下所示:

ImageSwitcher圖像切換器的使用方法

ImageSwitcher圖像切換器的使用方法

ImageSwitcher圖像切換器的使用方法

頁面布局

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:id="@+id/LinearLayout1"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:background="@drawable/bg67"
  android:orientation="vertical"
  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=".MainActivity" >

  <TextView
    android:id="@+id/show"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="20dp"
    android:layout_marginTop="20dp"
    android:text="我是當前圖片的信息~"
    android:textSize="24dp" />


  <LinearLayout 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <ImageSwitcher 
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:id="@+id/image"
      android:layout_gravity="center"
      android:background="#666666">
    </ImageSwitcher>

    <LinearLayout 
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:orientation="horizontal"
      android:gravity="center">

      <Button 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="上一張"
        android:layout_marginLeft="20dp"
        android:textSize="24dp"
        android:id="@+id/up" />

      <Button 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="下一張"
        android:layout_marginLeft="20dp"
        android:textSize="24dp"
        android:id="@+id/down" />

    </LinearLayout>

  </LinearLayout>
</LinearLayout>

事件響應

package com.example.imageswitchdemo;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.widget.Button;
import android.widget.ImageSwitcher;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.ViewSwitcher.ViewFactory;

public class MainActivity extends Activity
{
  TextView show=null;
  Button up,dowm=null;
  ImageSwitcher image=null;
  private int[] images=new int[]{R.drawable.a001,R.drawable.a002,R.drawable.a003,
                  R.drawable.a004,R.drawable.a005,R.drawable.a006,
                  R.drawable.a007,R.drawable.a008,R.drawable.a009};
  private int index=0;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    //獲取控件
    show=(TextView) findViewById(R.id.show);
    up=(Button) findViewById(R.id.up);
    dowm=(Button) findViewById(R.id.down);
    image=(ImageSwitcher) findViewById(R.id.image);

    //為獲取到的控件添加顯示效果:淡入動畫和淡出動畫
    image.setInAnimation(AnimationUtils.loadAnimation(this, android.R.anim.fade_in));
    image.setOutAnimation(AnimationUtils.loadAnimation(this, android.R.anim.fade_out));

    //為圖像切換器設置一個ViewFactory,并重寫makeView方法
    image.setFactory(new ViewFactory()
    {

      @Override
      public View makeView()
      {
        //指定視圖切換工程
        return new ImageView(MainActivity.this);
      }
    });
    image.setImageResource(images[index]);
    show.setText("一共有"+images.length+"張圖片,當前是第"+(index+1)+"張圖片");

    //當點擊按鈕時,圖像切換并顯示相應的信息
    up.setOnClickListener(new OnClickListener()
    {

      @Override
      public void onClick(View arg0)
      {
        if(index>0)
          index--;
        else
          index=images.length-1;

        image.setImageResource(images[index]);
        show.setText("一共有"+images.length+"張圖片,當前是第"+(index+1)+"張圖片");
      }
    });

    //同理,當點擊按鈕時,圖像切換并顯示相應的信息
    dowm.setOnClickListener(new OnClickListener()
    {
      public void onClick(View arg0)
      {
        if(index<images.length-1)
          index++;
        else
          index=0;

        image.setImageResource(images[index]);
        show.setText("一共有"+images.length+"張圖片,當前是第"+(index+1)+"張圖片");
      }
    });
  }

  @Override
  public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
  }

}

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

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

AI

黔西县| 横峰县| 高安市| 广安市| 双城市| 阿拉善盟| 鞍山市| 荔波县| 贵港市| 高州市| 寿宁县| 徐水县| 子长县| 安乡县| 体育| 诸城市| 县级市| 武乡县| 广东省| 海城市| 漠河县| 治多县| 塘沽区| 上饶市| 清远市| 宝兴县| 荔浦县| 伊通| 拉孜县| 松桃| 革吉县| 乐山市| 霸州市| 罗平县| 顺昌县| 湟中县| 丰顺县| 连山| 峡江县| 乃东县| 黄浦区|