`
xumin_minzi
  • 浏览: 41466 次
  • 性别: Icon_minigender_1
  • 来自: 南京
文章分类
社区版块
存档分类
最新评论
文章列表
/androidsrc_code/frameworks/policies/base/phone/com/android/internal/policy/impl/LockScreen.java public void onTrigger(View v, int whichHandle) {         if (whichHandle == SlidingTab.OnTriggerListener.LEFT_HANDLE) {                         mCallback.goToUnlockScreen();}
//调用gallery3d打开指定图片文件夹     private void callGallery(String path, int type, String title)     {         Uri uri = Images.Media.INTERNAL_CONTENT_URI;         uri = uri.buildUpon()                 .appendQueryParameter("bucketId", getHashcode(path)).build();         Intent intent = new Intent( ...
//初始化receiver protected void onResume()     {         super.onResume();         IntentFilter intentFilter = new IntentFilter(                 Intent.ACTION_MEDIA_MOUNTED);         intentFilter.addAction(Intent.ACTION_MEDIA_UNMOUNTED);         intentFilter.addAction(Intent.ACTION_MEDIA_EJECT);        ...
Android-RIL流程分析 2010-03-04 09:12 本文以通话设置中的呼叫等待的设置为例,讲解RIL的流程。其实其余的也类似如此 路径: package/apps/Phone/src/com/android/phone 呼叫等待的onClick事件在CallFeaturesSettings.java里面 当点击呼叫等待的CheckboxPreference时,调用以下函数: CallFeaturesSettings::onPreferenceTreeClick() 其中: else if (preference == mButtonCW) { handleCWClickReq ...
文件操作工具类
public static void forTransfer(String f1, String f2) throws Exception { long length = 2097152000; FileInputStream in = new FileInputStream(f1); FileOutputStream out = new FileOutputStream(f2); FileChannel inc = in.getChannel(); FileChannel outc = out.getChannel(); while (inc.position() != ...
Activity的代码 public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) { MenuInflater inflater = getMenuInflater(); inflater.inflate(R.menu.items_options_menu, menu); menu.setHeaderTitle(R.string.options_title); return; } res下menu文件 <menu xmlns:android=" ...
sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://" + Environment .getExternalStorageDirectory())));
有时候想把某个加入svn版本控制的工程脱离出来,这就需要删除SVN工作目录下的.svn目录,windows 平台下常用的作法是用系统(Windows)自带的搜索功能,搜索出所有.svn目录(需要在“其他高级选项”中选需要删除SVN工作目录下的.svn目录,而SVN Clinet 本身是不带清除.svn文件的命令的。所以只能自己写脚本来递归删除.svn文件夹:   1、windows 平台下 常用的作法是用系统(Windows)自带的搜索功能,搜索出所有.svn目录(需要在“其他高级选项”中选中“搜索隐藏的文件和文件夹”),然后全选删除。这当然不是高效的作法,谁能忍受一遍又一遍重复这种纯体 ...
图片文件1
主配置文件
剩余代码1
项目代码1
我的收藏代码
package com.huawei.myfavorite; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.AdapterView; import android.widget. ...
Global site tag (gtag.js) - Google Analytics