您好,登錄后才能下訂單哦!
利用之前學(xué)過的多線程處理技術(shù),我們做一個開啟新線程實現(xiàn)電子廣告牌的項目
界面布局文件,加入ImageView圖片控件,用于顯示一個圖片,一個TextView控件,用于顯示廣告說明語。
res/layout/main.xml:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/linearLayout1" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <ImageView android:id="@+id/imageView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="10dp" android:src="@drawable/hint"/> <TextView android:id="@+id/TextView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="10dp"/> </LinearLayout>
在res/drawable下加入幾張廣告圖片(ad1.jpg、ad2.jpg、ad3.jpg、ad4.jpg、ad5.jpg)
在主界面中,產(chǎn)生隨機數(shù)不斷的變換在ImageView空間上的圖片資源文件,來實現(xiàn)一個類似于幻燈片的電子廣告牌
MainActivity:
package com.example.test; import java.util.Random; import android.app.Activity; import android.os.Bundle; import android.os.Handler; import android.os.Message; import android.widget.ImageView; import android.widget.TextView; public class MainActivity extends Activity implements Runnable{ private ImageView imageView; private TextView textView; private Handler handler; private int[] path=new int[]{R.drawable.ad1,R.drawable.ad2, R.drawable.ad3,R.drawable.ad4,R.drawable.ad5}; private String[] title=new String[]{"美國進口葡萄酒","樂享移動4G時代", "江山御景樓盤開售","大學(xué)康城新區(qū)現(xiàn)房","五糧液精品"}; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); imageView=(ImageView)findViewById(R.id.imageView1); textView=(TextView)findViewById(R.id.TextView1); Thread t=new Thread(this);//創(chuàng)建新線程 t.start();//開啟線程 //實例化一個Handler對象 handler=new Handler(){ @Override public void handleMessage(Message msg) { //更新UI if(msg.what==0x101){ textView.setText(msg.getData().getString("title"));//設(shè)置標(biāo)題 imageView.setImageResource(path[msg.arg1]);//設(shè)置要顯示的圖片 } super.handleMessage(msg); } }; } /* * 判斷當(dāng)前線程是否被中斷,如果沒有被中斷, * 則首先產(chǎn)生一個隨機數(shù),然后獲取一個Message,并將要顯示 * 的廣告圖片的索引值和對應(yīng)標(biāo)題保存到該Message中,再發(fā)生 * 消息,最后讓線程休眠2秒鐘 * */ @Override public void run() { int index=0; while(!Thread.currentThread().isInterrupted()){ index=new Random().nextInt(path.length);//產(chǎn)生一個隨機數(shù) Message m=handler.obtainMessage();//獲取一個Message m.arg1=index;//保存要顯示廣告圖片的索引值 Bundle bundle=new Bundle();//獲取Bundle對象 m.what=0x101;//設(shè)置消息標(biāo)識 bundle.putString("title",title[index]);//保存標(biāo)題 m.setData(bundle);//將Bundle對象保存到Message中 handler.sendMessage(m);//發(fā)送消息 try { Thread.sleep(2000);//讓線程休眠2秒鐘 } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace();//輸出異常信息 } } } }
顯示效果如圖
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。