溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Android開發(fā)使用Handler實(shí)現(xiàn)圖片輪播功能示例

發(fā)布時(shí)間:2020-10-11 09:18:06 來源:腳本之家 閱讀:178 作者:ITzhongzi 欄目:移動(dòng)開發(fā)

本文實(shí)例講述了Android使用Handler實(shí)現(xiàn)圖片輪播功能。分享給大家供大家參考,具體如下:

提前定義好一個(gè)Runnable接口,然后用handler調(diào)用。

Mainactivity代碼如下:

package com.example.handle_01;
import android.os.Handler;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.ImageView;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
  private TextView textView;
  private Handler handler = new Handler();
  private ImageView imageView;
  private int[]images = {
      R.mipmap.image1,R.mipmap.image2
  };
  private int index;
  private MyRunnable myRunnable = new MyRunnable();
  class MyRunnable implements Runnable{
    @Override
    public void run() {
      index++;
      index = index%2;
      imageView.setImageResource(images[index]);
      handler.postDelayed(myRunnable,1000);
    }
  }
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    textView = (TextView) findViewById(R.id.textView);
    imageView = (ImageView) findViewById(R.id.imageView);
    handler.post(myRunnable);
    /*
    new Thread(){
      public void run(){
        try {
          Thread.sleep(1000);
          //post方法xiugai UI
          handler.post(new Runnable() {
            @Override
            public void run() {
              //在UI線程中執(zhí)行
              textView.setText("update thread");
            }
          });
          // textView.setText("update thread");
        } catch (InterruptedException e) {
          e.printStackTrace();
        }
      }
    }.start();
    */
  }
}

activity_main代碼如下:

<?xml version="1.0" encoding="utf-8"?>
<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.handle_01.MainActivity">
  <TextView
    android:id="@+id/textView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!" />
  <ImageView
    android:src="@mipmap/ic_launcher"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/imageView"
    android:layout_centerInParent="true" />
</RelativeLayout>

更多關(guān)于Android相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Android圖形與圖像處理技巧總結(jié)》、《Android開發(fā)入門與進(jìn)階教程》、《Android調(diào)試技巧與常見問題解決方法匯總》、《Android基本組件用法總結(jié)》、《Android視圖View技巧總結(jié)》、《Android布局layout技巧總結(jié)》及《Android控件用法總結(jié)》

希望本文所述對(duì)大家Android程序設(shè)計(jì)有所幫助。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI