- 浏览: 86441 次
- 性别:
- 来自: 成都
最新评论
-
kazy:
挺有意思的
Java 泛型 内部链式存储机制 -
qingchengbuzai:
谢谢分享,但有个问题向请教下,用android:theme=& ...
Android 系统自带样式Android:theme
文章列表
•android:theme="@android:style/Theme.Dialog" 将一个Activity显示为对话框模式
•android:theme="@android:style/Theme.NoTitleBar" 不显示应用程序标题栏
•android:theme="@android:style/Theme.NoTitleBar.Fullscreen" 不显示应用程序标题栏,并全屏
•android:theme="@android:style/Theme.Light" 背景为白色
•andr ...
Android 学习网站 不断更新
- 博客分类:
- Android
很多实例: http://www.anddev.org/viewforum.php?f=8、
Map开发: http://code.google.com/p/osmand/
博客1 http://blog.chinaunix.net/space.php?uid=20783399&do=blog&view=me&frmd=-1
Android 系统文件夹结构解析
- 博客分类:
- Android
\system\app
这个里面主要存放的是常规下载的应用程序,可以看到都是以APK格式结尾的文件。在这个文件夹下的程序为系统默认的组件,自己安装的软件将不会出现在这里,而是\data\文件夹中。
\system\bin
这个目录下的文件都是 ...
Android 权限中文说明
- 博客分类:
- Android
android.permission.ACCESS_CHECKIN_PROPERTIES 允许读写访问 "properties"表在checkin数据库中,改值可以修改上传( Allows read/write access to the "properties" table in the checkin database, to change values that get uploaded)
android.permission.ACCESS_COARSE_LOCATION 允许一个程序访问CellID或WiFi热点来获取粗略的位置(Allow ...
Android 反编译
- 博客分类:
- Android
如果你是一个开发人员 当看到比较好的android应用 你肯定想看它的源码
哈哈 教你如何反编译
#把apktool-install-windows-r04-brut1.tar.bz2和apktool1.4.1.tar.bz2解压后的文件放到C:\Window下
#反编译apk文件 CMD命令
apktool d "C:\LiveWallpapersPicker.apk" "C:\LiveWallpapersPicker"
#说明
# C:\LiveWallpapersPicker.apk 为apk文件
# C:\LiveWallpapersPic ...
Android 持久状态
- 博客分类:
- Android
当你编辑某Text视图时可能会打断当前编辑切换到另外的活动中,如果要持久你的编辑状态那么应该在Activity.onPause()里面做文章, 例如:
@Override
protected void onPause() {
super.onPause();
SharedPreferences.Editor editor = getPreferences(0).edit();
editor.putString("text", mSavedEditText.getText().toString());
editor.putInt( ...
Android Intent用法汇总
- 博客分类:
- Android
//显示网页
Uri uri = Uri.parse("http://google.com");
Intent it = new Intent(Intent.ACTION_VIEW, uri);
//显示地图
Uri uri = Uri.parse("geo:38.899533,-77.036476");
Intent it = new Intent(Intent.ACTION_VIEW, uri);
//其他 geo URI 範例
//geo:latitude,longitude
//geo:latitude, ...
Android 创建快捷方式
- 博客分类:
- Android
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
在你的项目清单中看到如下代码代表这个activity是本应用的启动activity。系统会自 ...
Android Intent之0001
- 博客分类:
- Android
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("audio/*");
startActivity(Intent.createChooser(intent, "Select music"));
选择查找音乐
Android Notification
- 博客分类:
- Android
// Notification管理器
nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
// 后面的参数分别是显示在顶部通知栏的小图标,小图标旁的文字(短暂显示,自动消失)系统当前时间(不明白这个有什么用)
Notification notification = new Notification(icon, tickertext,System.currentTimeMillis());
//设置 notification.flags 为 Notification.FLAG_AUTO_CAN ...
/**
* A description of an Intent and target action to perform with it. Instances
* of this class are created with {@link #getActivity},
* {@link #getBroadcast}, {@link #getService}; the returned object can be
* handed to other applications so that they can perform the action you
* describe ...
/**
* Make the device lock immediately, as if the lock screen timeout has
* expired at the point of this call.
*
* <p>The calling device admin must have requested
* {@link DeviceAdminInfo#USES_POLICY_FORCE_LOCK} to be able to call
* this method; if it has ...
(转)Android Window类
- 博客分类:
- Android
Android的Window类(一) Android的GUI层并不复杂。它的复杂度类似于WGUI这类基于布局和对话框的GUI,与MFC、QT等大型框架没有可比性,甚至飞漫魏永明的MiniGUI都比它复杂许多。您也许会问,这样简单的GUI如何实现浏览器呢?原因很简单,浏览器有自己一套GUI。Android浏览器(WebKit)的GUI和Android的GUI实用同一套GDI——Skia,但GUI层是完全不同的设计,分别自成体系。
Windown类,位于代码树frameworks\base\core\java\android\view\Windowjava.java文件。连同注释,这个文件总 ...
Android 修改Window属性
- 博客分类:
- Android
自定义标题栏
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,R.layout.custom_title);
custom_title.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/screen"
android:layout_w ...
<activity android:name=".CustomDialogActivity" android:theme="@style/Theme.CustomDialog" />
Theme.CustomDialog
<style name="Theme.CustomDialog" parent="android:style/Theme.Dialog">
<item name="android:windowBackground">@ ...