- 浏览: 177229 次
- 性别:
- 来自: 深圳
文章列表
http://blog.sina.com.cn/s/blog_7cdaf8b60101o5n1.html
String appPackageName = getPackageName();
// getPackageName() from Context or Activity object
try {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + appPackageName)));
} catch (android.content.ActivityNotFoundException anfe) {
startActivity(new ...
Activity 全透明属性
- 博客分类:
- android代码
android:theme="@android:style/Theme.Translucent.NoTitleBar"
https://shenghuo.alipay.com/send/payment/fill.htm?optEmail=pj1258@163.com&payAmount=20&title=201303170935103624&memo=
android平台运行flash游戏
- 博客分类:
- android代码
android平台运行flash游戏
http://blog.csdn.net/yearafteryear/article/details/8959475
http://www.oschina.net/code/snippet_194999_6812
修改flash文件
http://jingyan.baidu.com/article/3c48dd3446814ae10be3582c.html
gridview布局
<?xml version="1.0" encoding="utf-8"?>
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gridview"
android:layout_width="fill_parent"
android:layout_height="fill_pa ...
模仿google play里的游戏《餐厅物语》做一款类似的游戏哦!!~~~
诚寻策划:价格从优1、编写完整细致的策划案,这种内容不用策划的复杂,和原作一样就可以;2、主要是清楚的罗列出类型,数量,数据(时 ...
http://blog.csdn.net/guolin_blog/article/details/16919859
注意:本游戏对美术细节部分要求较高,请美术接包者自行考虑本身设计水平定夺是否接包,避免因作图过程中无法满足要求导致合作终止,而浪费时间和精力!联系qq:462842118接包有三种模式:1、只接代码部分:1.6w-1.8w2、直接美术部分:6k-8k3、代码+美术:2w-2.5w定价方面已经考虑的非常成熟,非常合理,请不要再还价了。一、游戏介绍:本游戏模仿google play上一款名为《star chef》的游戏来做,玩法上进行模仿,UI上进行替换。本游戏将来作为精品游戏面向国
Visa Gift Card申请gp号
- 博客分类:
- 银行业务
http://www.maplefeng.com/html5/archives/article-595.html
谷歌Play Store为了提升应用的品质,提高了开发者加入的门槛。许多开发者虽然开发出了优质的应用,却因为种种原因无法支付25美金的注册费用而导致其应用不能在官方市场上发布,损 ...
http://www.mghost.cn/thread-2574-1-1.html
android 透明效果
- 博客分类:
- android代码
参考http://2960629.blog.51cto.com/2950629/742499
设置透明效果 大概有三种
1、用android系统的透明效果
Java代码
android:background="@android:color/transparent"
例如 设置按钮
Java代码
<Button android:background="@android:color/transparent"
...
欧贝通和工行e卡(虚拟visa卡)
- 博客分类:
- 银行业务
一般godaddy推出1美元注册域名的神码的时候,就会有大量的人利用虚拟visa卡进行注册,这种虚拟的visa卡类似储蓄卡,可以通过工行e卡将钱充值进去,然后进行消费。
欧贝通(entropay)虚拟VISA卡有效解决了用户没有双币信用卡或者 ...
主要就是重写 onAttachedToWindow () 和 onKeyDown (...,...) 这两个方法。
前者是起到拦截作用的,后者是监听到HOME按键事件后的动作,如果没动作可以不要 onKeyDown。
还要注意,要加权限:
<uses-permission android:name="android.permission.DIS ...
Android不同应用之间数据的共享有许多方式,但是我觉得还是使用sharedPreference比较简单和轻量级。如果程序B想要访问程序A的sharedPreference可以通过下面的语句来实现:
try {
AContext =createPackageContext(A_PACKAGE_NAME,
Context.CONTEXT_IGNORE_SECURITY);
} catch (NameNotFoundException e) {
Log.e(TAG, "fi ...