
android-code
文章平均质量分 56
-droidcoffee-
这个作者很懒,什么都没留下…
展开
-
ShortCutUtils 快捷方式工具类
package org.droid.util.sys;import android.app.Activity;import android.content.ComponentName;import android.content.ContentResolver;import android.content.Context;import android.content.Intent;i原创 2011-11-28 18:11:57 · 2801 阅读 · 0 评论 -
android 源码下载中遇到的问题 repo sync
android 官方文档https://source.android.com/source/downloading.html同步android-4.4.4_r2的时候 repo init -u https://android.googlesource.com/platform/manifest -b android-4.4.4_r2有的工程很大 比如说 有个工程devi原创 2015-08-03 22:05:35 · 3249 阅读 · 0 评论 -
杂记,本人用的~方便查询~~省的满世界找
1、android虚线<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="line"> <stroke android:dashGap="2dp" android:dashWidth="2dp" android:原创 2015-07-02 14:26:39 · 982 阅读 · 0 评论 -
在onCreate初中获取View中的宽、高
int finalHeight, finalWidth; final ImageView iv = (ImageView)findViewById(R.id.scaled_image); final TextView tv = (TextView)findViewById(R.id.size_label); ViewTreeObserver vto = iv.getViewTreeObser原创 2012-03-14 16:35:24 · 1592 阅读 · 3 评论 -
fragment 使用篇--入门
Fragment与Activity的生命周期中最大的不同就是存储到后退栈中的过程。Activity是在停止时自动被系统压入停止栈,并且这个栈是被系统管理的;而fragment是被压入activity所管理的一个后退栈,并且只有你在删除fragment后并明确调用addToBackStack()方法时才被压入以下是Demoimport android.app.Activit原创 2013-01-23 16:23:10 · 2131 阅读 · 0 评论 -
Android相关属性的介绍:android:exported
android:exported这个属性用于指示该服务是否能够被其他应用程序组件调用或跟它交互。如果设置为true,则能够被调用或交互,否则不能。设置为false时,只有同一个应用程序的组件或带有相同用户ID的应用程序才能启动或绑定该服务。它的默认值依赖与该服务所包含的过滤器。没有过滤器则意味着该服务只能通过指定明确的类名来调用,这样就是说该服务只能在应用程序的内部使用(因为其他外部使用者原创 2012-11-02 17:51:09 · 60707 阅读 · 4 评论 -
android sdk 无法更新
在Windows/System/driver/etc/hosts下加74.125.237.1 dl-ssl.google.com2012年9月10日测试, 这个代理可能随时就不能用了。原创 2012-09-10 13:50:19 · 861 阅读 · 0 评论 -
android 异步加载 头像错乱
public synchronized static void setPhotoSmall(ImageView imageView, String iamgeUrl, final View listView) {try {imageView.setTag(iamgeUrl);Drawable bitmap = getInstance().loadImage(iamgeUrl, new OnI原创 2012-09-05 18:24:27 · 2701 阅读 · 0 评论 -
在一个应用中启用另一个应用
PackageManager packageManage = getPackageManager(); Intent ins = packageManage.getLaunchIntentForPackage("com.pkg"); startActivity(ins);原创 2012-08-03 15:59:50 · 1076 阅读 · 0 评论 -
Android 听筒播放 适配(摩托)
mAudioManager.setStreamVolume(AudioManager.STREAM_RING, currentVolume, AudioManager.FLAG_ALLOW_RINGER_MODES);原创 2012-07-08 19:40:40 · 2835 阅读 · 0 评论 -
android获取手机型号和手机厂商
1. 获取手机型号:return android.os.Build.MODEL2. 获取手机厂商:return android.os.Build.MANUFACTURER;这里需要注意的是,SDK1.5是不支持这个参数的。原创 2012-07-08 19:29:32 · 29946 阅读 · 0 评论 -
MediaPlayer创建
// 注意用这种方式创建的Media不需要 mediaPlayer.prepare(); // 创建的时候已经调用过了 mMediaPlayer = MediaPlayer.create(this.mContext, R.raw.voip_call_ring); AudioManag原创 2012-06-23 08:11:01 · 1529 阅读 · 0 评论 -
Handler ThreadHandler 同步与异步
mHandle.post(new Runnable() { @Override public void run() { for (int i = 0; i < 10; i++) { Log.i(TAG, "XXXX " + i); } } }); try { Thread.sleep(1000 * 10); } catch原创 2012-04-30 00:49:15 · 2778 阅读 · 0 评论 -
listView透明背
<ListView android:id="@id/chatting_history_lv" android:background="@null" android:scrollbars="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"原创 2012-03-22 21:46:13 · 2055 阅读 · 0 评论 -
HttpClient - HttpUrlConnection
package coffee.util.http;import java.io.BufferedInputStream;import java.io.BufferedReader;import java.io.ByteArrayOutputStream;import java.io.IOException;import java.io.InputStream;import java.原创 2012-02-19 16:10:12 · 1534 阅读 · 0 评论 -
android 动画自动播放
private ImageView image; private AnimationDrawable animDrawable = new AnimationDrawable(); @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setCon原创 2011-10-24 16:18:28 · 2080 阅读 · 0 评论 -
popupwindo translate animation 从底部弹出 动画设置
先看一下 translate 用法解析http://developer.android.com/intl/zh-cn/guide/topics/resources/animation-resource.htmlA vertical and/or horizontal motion. Supports the following attributes in any of the foll原创 2015-11-10 10:56:18 · 4034 阅读 · 0 评论