`
文章列表
•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 ...
很多实例: 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 
\system\app 这个里面主要存放的是常规下载的应用程序,可以看到都是以APK格式结尾的文件。在这个文件夹下的程序为系统默认的组件,自己安装的软件将不会出现在这里,而是\data\文件夹中。 \system\bin 这个目录下的文件都是 ...
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应用 你肯定想看它的源码 哈哈 教你如何反编译 #把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 持久状态

当你编辑某Text视图时可能会打断当前编辑切换到另外的活动中,如果要持久你的编辑状态那么应该在Activity.onPause()里面做文章,  例如: @Override protected void onPause() { super.onPause(); SharedPreferences.Editor editor = getPreferences(0).edit(); editor.putString("text", mSavedEditText.getText().toString()); editor.putInt( ...
//显示网页 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, ...
<intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> 在你的项目清单中看到如下代码代表这个activity是本应用的启动activity。系统会自 ...

Android Intent之0001

Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("audio/*"); startActivity(Intent.createChooser(intent, "Select music")); 选择查找音乐

Android Notification

// 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的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文件。连同注释,这个文件总 ...
自定义标题栏 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">@ ...
Global site tag (gtag.js) - Google Analytics