開始寫程式的時候做好一些裝備工作

2021-07-10 09:28:12 字數 1986 閱讀 9580

package com.examplexiaomo.xiaomo;

import android.r.anim;

import android.content.context;

import android.os.handler;

// private static context mmaincontext;

private static handler mmainhandler;

private static long mmainthread;

@override

public void oncreate()

/*** @return the mmaincontext

*/public static context getmaincontext()

/*** @param mmaincontext the mmaincontext to set

*/public static void setmaincontext(context mmaincontext)

/*** @return the mmainhandler

*/public static handler getmainhandler()

/*** @param mmainhandler the mmainhandler to set

*/public static void setmainhandler(handler mmainhandler)

/*** @return the mmainthread

*/public static long getmainthread()

/*** @param mmainthread the mmainthread to set

*/public static void setmainthread(long mmainthread)

}

2,然後做好乙個uiutiles的工具類:

package com.examplexiaomo.xiaomo.utils;

import android.r.anim;

import android.content.context;

import android.content.res.resources;

import android.os.handler;

public class uiutils

/*** 獲取資源*/

public static resources getresources()

/*** 獲取*/

public static string getstring(int resid)

public static string getstringarray(int resid)

public static int getcolor( int resid )

/*** 獲取主線程的handler*/

public static handler getmainhandler()

/*** 獲取主線程id號*/

public static long getmainthread()

/*** 安全的重新整理ui操作*/

public static void posttasksaftly(runnable task)else

}/**

* 根據手機的解析度從 dp 的單位 轉成為 px(畫素)

*/

public static int dip2px(float dpvalue)

/**

* 根據手機的解析度從 px(畫素) 的單位 轉成為 dp

*/

public static int px2dip(float pxvalue)

}

在寫php的時候的一些經驗

今天 因為乙個驗證碼問題 搞了一下午 所以很就結合抑鬱 為什麼 會出現這個錯誤 因為 我們專案的伺服器的變更 所以專案的配置檔案也跟著一起要進行更改 所以在更改眾多配置檔案的時候 就埋下了 接下來要處理的問題的隱患 當把配置檔案都改好上傳之後 還並不知道驗證碼那邊出問題了 知道有人跟我說 出問題了 ...

關於寫程式的一些笑話

應當知道,任何一位受過職業道德訓練的軟體工程師都不會同意寫乙個 摧毀巴格達 destroybaghdad 這樣的函式。相反,基本的職業道德要求他寫乙個 摧毀城市 destroycity 的函式,巴格達 baghdad 是乙個引數。nathaniel s borenstein 只有兩種計算機語言 一些...

關於寫js的時候的一些問題

size medium 第一種情況 missing after argument list 這種情況產生的原因是在js中 string型別的變數在js函式傳遞的時候必需包含在雙引號中,這樣你加上雙引號就沒問題了。具體的例子是,我在生成html 的js中如下寫法的時候是會報錯的。str str 但是當...