使用FrameLayOut來實現霓虹燈效果

一、首先是layout佈局頁面,使用7個Textview疊加在一塊兒,所以,這裏的layout佈局使用FrameLayout幀佈局,代碼以下: java


<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        />

    <TextView
        android:id="@+id/textView2"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
      />

    <TextView
        android:id="@+id/textView3"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
       />

    <TextView
        android:id="@+id/textView4"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
      />

    <TextView
        android:id="@+id/textView5"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        />

    <TextView
        android:id="@+id/textView6"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        />

    <TextView
        android:id="@+id/textView7"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
       />

</FrameLayout>
滿屏幕顯示效果,所以使當前的佈局管理器以及全部的textview均充滿了整個屏幕。


二、接下來是關鍵的一步,java代碼以下: android


package com.wjl.myandroid1;

import java.util.Timer;
import java.util.TimerTask;

import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.widget.TextView;

public class FrameLayOutTest extends Activity{

	private int currentColor = 0;
	//定義一個顏色數組
	final int[] colors = new int[]{
			R.color.color7,
			R.color.color6,
			R.color.color5,
			R.color.color4,
			R.color.color3,
			R.color.color2,
			R.color.color1,
	};
	final int[] names = new int[]{
			R.id.textView1,
			R.id.textView2,
			R.id.textView3,
			R.id.textView4,
			R.id.textView5,
			R.id.textView6,
			R.id.textView7,
	};
	TextView[] views = new TextView[7];
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		// TODO Auto-generated method stub
		super.onCreate(savedInstanceState);
		setContentView(R.layout.testview);
		for(int i=0;i<7;i++){
			views[i] = (TextView) findViewById(names[i]);
		}
		
		final Handler handler = new Handler(){

			@Override
			public void handleMessage(Message msg) {
				// TODO Auto-generated method stub
				if(msg.what == 0x1122){//消息來自本程序發送
					//依次改變七個textview的背景色
					for(int i=0;i<7-currentColor;i++){
						views[i].setBackgroundResource(colors[i+currentColor]);
					}
					for(int i=7-currentColor,j=0;i<7;i++,j++){
						views[i].setBackgroundResource(colors[j]);
					}
				}
				super.handleMessage(msg);
			}
			
		};
		
		new Timer().schedule(new TimerTask() {
			
			@Override
			public void run() {
				// TODO Auto-generated method stub
				currentColor++;
				if(currentColor>=6){
					currentColor=0;
				}
				Message m = new Message();
				m.what = 0x1122;
				handler.sendMessage(m);
			}
		},0,100);
	}

	
}
解釋: 
TextView[] views = new TextView[7];
這裏是一個views的數組,其中的數據類型均爲TextView類型 
for(int i=0;i<7;i++){
			views[i] = (TextView) findViewById(names[i]);
		}
此時便獲取了xml裏面的七個控件。
相關文章
相關標籤/搜索