2009年12月22日星期二

設定及更改背景顏色

可以通過XML或程序代碼設定及更改Android的背景顏色

設定及更改背景顏色

創建一個Android Application, AndroidBackground. 並根據下面的例子修改佈局文件(/res/layout/main.xml)及主程序(AndroidBackground.java).

main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/back"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ff000000"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<Button
android:id="@+id/red"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Red"
/>
<Button
android:id="@+id/green"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Green"
/>
<Button
android:id="@+id/blue"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Blue"
/>
</LinearLayout>


AndroidBackground.java

package com.AndroidBackground;

import android.app.Activity;
import android.graphics.Color;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.LinearLayout;

public class AndroidBackground extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

final LinearLayout background = (LinearLayout)findViewById(R.id.back);
Button buttonRed = (Button)findViewById(R.id.red);
Button buttonGreen = (Button)findViewById(R.id.green);
Button buttonBlue = (Button)findViewById(R.id.blue);

buttonRed.setOnClickListener(
new Button.OnClickListener(){

public void onClick(View v) {
// TODO Auto-generated method stub
background.setBackgroundColor(Color.RED);
}
});

buttonGreen.setOnClickListener(
new Button.OnClickListener(){

public void onClick(View v) {
// TODO Auto-generated method stub
background.setBackgroundColor(Color.GREEN);
}
});
buttonBlue.setOnClickListener(
new Button.OnClickListener(){

public void onClick(View v) {
// TODO Auto-generated method stub
background.setBackgroundColor(Color.BLUE);
}
});
}
}


從這個例子可以看到背景顏色可以通過修改XML的android:background設定, 或通過程序代碼setBackgroundColor()而更改.

1 則留言:

  1. 請問一下

    我的Activity測過沒問題(以下簡稱A)
    但是因為太長 所以我把部分程式碼
    分成另一個java檔(簡稱B )
    因為我B會用到A的變數
    所以我把B繼承那個A
    並把A裡會用的變數都改成protected
    但是程式一開啟馬上FC
    我測過 如果把這句 B b=new B();
    移掉又可以跑了

    但是我把extends 拿掉 只單純的在A裡宣告 B b=new B();
    B裡面沒做任何事

    一樣FC

    請問是什麼問題呢?

    回覆刪除