当前位置: 编程技术>移动开发
本页文章导读:
▪获取目前locale 获取当前locale
Resources res = ctx.getResources();
// Change locale settings on the device
DisplayMetrics dm = res.getDisplayMetrics();
android.content.res.Configuration conf = res.getCon.........
▪ 今日突然收到 Mobclix 的来信 今天突然收到 Mobclix 的来信
I’m Navang with Mobclix, hope you're doing well. I saw your app in the app market, congratulations on all the success! I've tried to reach out before but was unsuccessful so wanted to try again.I wanted to let .........
▪ 用LUA兑现一套自定义UI框架 用LUA实现一套自定义UI框架
需求:工作需要, 用lua封装一套UI。现在用传统方法开发界面太费事了, 状态机的维护,图片资源的加载和释放,随时要注意内存溢出,还要注意n多bug, 前阵.........
[1]获取目前locale
来源: 互联网 发布时间: 2014-02-18
获取当前locale
Resources res = ctx.getResources(); // Change locale settings on the device DisplayMetrics dm = res.getDisplayMetrics(); android.content.res.Configuration conf = res.getConfiguration(); conf.locale = new Locale(language_code.toLowerCase(), coutry_code.toUpperCase()); res.updateConfiguration(conf, dm);
[2] 今日突然收到 Mobclix 的来信
来源: 互联网 发布时间: 2014-02-18
今天突然收到 Mobclix 的来信
I’m Navang with Mobclix, hope you're doing well. I saw your app in the app market, congratulations on all the success! I've tried to reach out before but was unsuccessful so wanted to try again.
I wanted to let you know that you could make a significant amount of money through in app advertising with Mobclix. Mobclix is the largest mobile ad exchange, connecting publishers to 20+ ad networks and the highest eCPM inventory. Mobclix is a completely free service for you, the publisher (ad networks pay us to be a part of the exchange).
I'd be happy to explain this in further detail. Do you have time for a quick call today or tomorrow?
Thanks,
Navang Oza
看来未来移动广告市场的竞争将会越来越大,同时也期待国内市场的进一步发展。
I’m Navang with Mobclix, hope you're doing well. I saw your app in the app market, congratulations on all the success! I've tried to reach out before but was unsuccessful so wanted to try again.
I wanted to let you know that you could make a significant amount of money through in app advertising with Mobclix. Mobclix is the largest mobile ad exchange, connecting publishers to 20+ ad networks and the highest eCPM inventory. Mobclix is a completely free service for you, the publisher (ad networks pay us to be a part of the exchange).
I'd be happy to explain this in further detail. Do you have time for a quick call today or tomorrow?
Thanks,
Navang Oza
看来未来移动广告市场的竞争将会越来越大,同时也期待国内市场的进一步发展。
1 楼
zfe248
2010-03-18
不知道大家是否也有收到同样的来信?
2 楼
void1898
2010-03-18
我的应用发布上去不久就收到了
3 楼
BarryWei
2010-03-18
Mobclix 上时iphone的应用?
[3] 用LUA兑现一套自定义UI框架
来源: 互联网 发布时间: 2014-02-18
用LUA实现一套自定义UI框架
需求:
工作需要, 用lua封装一套UI。现在用传统方法开发界面太费事了, 状态机的维护,图片资源的加载和释放,随时要注意内存溢出,还要注意n多bug, 前阵子给社区做了几个界面就用了两周时间, 显然, 方法不是这样地。。。
现在我们要改变这种现状, 用lua实现UI自动管理(我们用lua做为客户端脚本)。
基本框架:
容器
布局 (布局管理器)
资源管理(资源的创建和释放)
焦点管理(控件状态切换)
上班了, 等会再写
需求:
工作需要, 用lua封装一套UI。现在用传统方法开发界面太费事了, 状态机的维护,图片资源的加载和释放,随时要注意内存溢出,还要注意n多bug, 前阵子给社区做了几个界面就用了两周时间, 显然, 方法不是这样地。。。
现在我们要改变这种现状, 用lua实现UI自动管理(我们用lua做为客户端脚本)。
基本框架:
容器
布局 (布局管理器)
资源管理(资源的创建和释放)
焦点管理(控件状态切换)
上班了, 等会再写
最新技术文章: