程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-為什麼背景顏色不顯示?

android-為什麼背景顏色不顯示?

編輯:編程綜合問答
為什麼背景顏色不顯示?

在android視圖中如何設置一個背景的顏色?
Activity中的代碼:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    View v = new  View(this);

    setContentView(v);
    v.setBackgroundColor(23423425);
}

卻得到的是黑屏。

最佳回答:


View view = new View(this);
view.setBackgroundColor(Color.BLACK);
或者view.setBackgroundColor(十六進制顏色值)

或者上面那方法
看Color類中的
public static final int BLACK = 0xFF000000;
public static final int DKGRAY = 0xFF444444;
public static final int GRAY = 0xFF888888;
public static final int LTGRAY = 0xFFCCCCCC;
public static final int WHITE = 0xFFFFFFFF;
public static final int RED = 0xFFFF0000;

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved