?? color.java
字號:
package com.jmobilecore.ui.core;
/**
* The colors available to midlets.
*
* @author Greg Gridin
*/
public class Color {
/**
* "Transparent" color. This color is valid for Motorola handsets, but may not apply for all phones.
*/
public static final int TRANSPARENT = 0xFFFFFFFF;
/**
* The color white.
*/
public static final int WHITE = 0xFEFEFE;
/**
* The color light gray.
*/
public static final int LT_GRAY = 0xAAAAAA;
/**
* The color dark gray.
*/
public static final int DK_GRAY = 0x555555;
/**
* The color black.
*/
public static final int BLACK = 0x000000;
/**
* The color light red.
*/
public static final int LT_RED = 0xFFAAAA;
/**
* The color dark red.
*/
public static final int DK_RED = 0x550000;
/**
* The color red.
*/
public static final int RED = 0xFF0000;
/**
* The color light green.
*/
public static final int LT_GREEN = 0xAAFFAA;
/**
* The color dark green.
*/
public static final int DK_GREEN = 0x005500;
/**
* The color green.
*/
public static final int GREEN = 0x00FF00;
/**
* The color light blue.
*/
public static final int LT_BLUE = 0xAAAAFF;
/**
* The color dark blue.
*/
public static final int DK_BLUE = 0x000055;
/**
* The color blue.
*/
public static final int BLUE = 0x0000FF;
/**
* The color light yellow.
*/
public static final int LT_YELLOW = 0xFFFFAA;
/**
* The color yellow.
*/
public static final int YELLOW = 0xFFFF00;
/**
* The color light cyan.
*/
public static final int LT_CYAN = 0xAAFFFF;
/**
* The color cyan.
*/
public static final int CYAN = 0x00FFFF;
/**
* The color light magenta.
*/
public static final int LT_MAGENTA = 0xFFAAFF;
/**
* The color magenta.
*/
public static final int MAGENTA = 0xFF00FF;
} // class Color
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -