1 全沉浸式自定義顏色

2021-08-09 22:26:46 字數 1003 閱讀 9911

一、baseactivity

沉浸式狀態列

//判斷當前sdk版本號,如果是4.4以上,就是支援沉浸式狀態列的

if(build.version.sdk_int>= build.version_codes.lollipop) else if(build.version.sdk_int>= build.version_codes.kitkat) else if(build.version.sdk_int>= build.version_codes.kitkat) return super.onkeydown(keycode, event);}

public voidbacksystem() elseelse{

toast.maketext(mview,"再按一次退出apos", toast.length_long).show();

資料型別大小

intent intent =newintent(intent.action_view);

startactivity(intent);

uri uri = uri.parse("package:包名");

intent intent = new intent(intent.action_delete,uri);

startactivity(intent);

一定要設定smallicon否則會報錯

extjs chart 自定義顏色

var colors rgb 212,40,40 ext.define ext.chart.theme.fancy config 首先定義柱子顏色 var colors rgb 212,40,40 rgb 180,216,42 rgb 43,221,115 rgb 45,117,226 rgb 18...

IOS UIColor 自定義顏色

平時寫介面的時候要為控制項設定各種各樣的顏色,然而uicolor中只封裝了如下這些顏色。uicolor blackcolor 0.0 white uicolor darkgraycolor 0.333 white uicolor lightgraycolor 0.667 white uicolor ...

ios UIColor 自定義顏色

花了點時間,終於搞明白了。1.利用uicolor展現 f6f6f6 這個傳統的顏色 f6f6f6 為乙個 16 進製表示的rpg顏色,所以,需要先轉換成 10進製,其中 f6 240,f6 240 f6 240 之後,一行 即可 uicolor testcolor1 uicolor colorwit...