博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mtk theme颜色配置[转]
阅读量:2221 次
发布时间:2019-05-08

本文共 2150 字,大约阅读时间需要 7 分钟。

颜色配置:

短信阅读界面信息头背景颜色:EMS_viewer_header_background_filler
颜色选择绘制:show_highlighted_inline_color_select_menuitem()
状态栏背景颜色:status_icon_bar_filler_defaultTheme
单行编辑器光标颜色:inline_edit_cursor_color_defaultTheme
单行编辑高亮背景颜色:inline_edit_focussed_filler_defaultTheme
多行编辑界面行分隔线颜色:gui_create_EMS_input_box()--->b->underline_color
编辑区域字体颜色:inputbox_normal_text_color_defaultTheme
编辑界面选字区域:1>箭头 mmi_pen_editor_draw_arrow()
                  2>选字区域背景颜色,选中背景等 candidate_singleline_inputbox_theme
编辑界面虚拟键盘按中键背景颜色:virtual_keyboard_key_down_filler_defaultTheme
popup屏幕背景颜色:popup_screen_background_color_defaultTheme
popup屏幕字体颜色:popup_screen_border_color_defaultTheme
滚动条颜色:scrollbar_background_filler_defaultTheme
滚动条滑块颜色: scrollbar_indicator_filler_defaultTheme
list菜单项高亮背景颜色:list_selected_item_filler_defaultTheme
日历当前日期背景颜色:calendar_cell_current_DefaultTheme
校准界面字体颜色:UpdateCalibrationScreen()--->MMI_multiline_inputbox.normal_text_color
开机请等候界面字体颜色: ShowCategory9Screen()--->MMI_multiline_inputbox.normal_text_color
开机找网界面日期时间字体颜色: set_dt_display--->case DT_NETWORK_SEARCH
电子书字体颜色:ShowCategory75Screen()--->MMI_multiline_inputbox.normal_text_color
编辑区域默认背景颜色:inputbox_filler_defaultTheme(如**USB)

 

 

inputbox_normal_text_color_2Theme  //编辑短信字体颜色

inputbox_selected_text_color_2Theme    //编辑短信选中字体颜色

inputbox_selector_color_2Theme  //编辑短信选中框颜色

inputbox_cursor_color_2Theme  //编辑短信游标颜色

inline_edit_focussed_text_color_2Theme //单行编辑行选中行颜色

inline_edit_selected_text_color_2Theme //单行编辑行选中字颜色

inline_edit_selector_color_2Theme //单行编辑行选中框颜色

inline_list_normal_text_color_2Theme  //单行编辑行默认行颜色

idle_menu_bkg_filler_defaultTheme_2 //idle背景图案

information_bar_color_defaultTheme //信息栏颜色

list_selected_item_filler_defaultTheme //菜单选中行背景颜色

list_normal_item_filler_defaultTheme //菜单默认行背景颜色

自定义背景图案:

const U8 IMG_INTERPHONE_BACKGROUND_FILLER_DEFAULTTHEME[] =

{

};

CONST_HARDWARE UI_filled_area Interphone_screen_bkg_filler_defaultTheme={

UI_FILLED_AREA_TYPE_BITMAP,

(U8*)IMG_INTERPHONE_BACKGROUND_FILLER_DEFAULTTHEME,

NULL,

{240,240,240,100},

{0,0,0,100},

{0,0,0,100},

{0,0,0,100},

0};

 

main_menu_bkg_filler_defaultTheme主菜单背景图案

sub_menu_bkg_filler_defaultTheme子菜单背景图案

idle_menu_bkg_filler_defaultTheme idle菜单背景图案

转载地址:http://ayifb.baihongyu.com/

你可能感兴趣的文章
简单封装FMDB操作sqlite的模板
查看>>
iOS开发中Instruments的用法
查看>>
强引用 软引用 弱引用 虚引用
查看>>
数据类型 java转换
查看>>
"NetworkError: 400 Bad Request - http://172.16.47.117:8088/rhip/**/####t/approval?date=976
查看>>
mybatis 根据 数据库表 自动生成 实体
查看>>
C结构体、C++结构体、C++类的区别
查看>>
进程和线程的概念、区别和联系
查看>>
CMake 入门实战
查看>>
绑定CPU逻辑核心的利器——taskset
查看>>
Linux下perf性能测试火焰图只显示函数地址不显示函数名的问题
查看>>
c结构体、c++结构体和c++类的区别以及错误纠正
查看>>
Linux下查看根目录各文件内存占用情况
查看>>
A星算法详解(个人认为最详细,最通俗易懂的一个版本)
查看>>
利用栈实现DFS
查看>>
(PAT 1019) General Palindromic Number (进制转换)
查看>>
(PAT 1073) Scientific Notation (字符串模拟题)
查看>>
(PAT 1080) Graduate Admission (排序)
查看>>
Play on Words UVA - 10129 (欧拉路径)
查看>>
mininet+floodlight搭建sdn环境并创建简答topo
查看>>