- 浏览: 868241 次
- 性别:
- 来自: 上海
最新评论
-
waterflow:
感谢分享
简单的ChartDirector生成图表例子 -
YQuite:
写到最后一种文件才看到这个,洼的一声哭了出来 - - !
java简单解析docx、pptx、xlsx文档 -
q394469902:
Android通过selector改变界面状态 -
db6623919:
直接粘贴别人帖子还是英文的,有意思?
实现RTSP协议的简单例子 -
ykou314:
请问下,这些超级命令,是否需要android root权限,尤 ...
Android系统在超级终端下必会的命令大全(七)
文章列表
Android实现图表,网址:http://www.java4less.com/charts/chart.php?info=android,试用了一个Demo,非常不错,而且还有很多图表类型,还能动态显示,很强大。
下载地址:http://www.java4less.com/charts/rchad2.zip
在刚刚结束的WWDC大会上苹果正式的对外发布了他们全新一代iPhone产品也就是iPhone 4。随着这一产品的推出,本来已经被逐渐缩小的android与iphone之间的差距将再一次被拉大,同时android的开发者也感觉到了Android在未来发展中将会遇到的巨大挑战。
虽然我们的Android系统刚刚经历了2.2的升级,但是Android系统的每一次升级所带来的更多还是软件以及应用方面的更新。这对于大家更为关心的用户体验的提升就显得有些不公平。
不过近日我们得到消息中称下一次Android系统的全面升级将主要解决目前Android终端用户体验不佳的问题 ...
移动互联网的出现正在改变人们在信息时代的生活,用户对于移动应用,特别是其中的互动、生活辅助应用的需求越来越大。本文重点介绍了未来十大流行移动应用及其预测。
移动互联网应用具有终端设备多样、可随身携 ...
It is a super terminal to send command and manage your android system.它是一款超级终端通过命令管理你的android系统
http://code.google.com/p/andbox/
AndClear - Android Clean-up Management SoftwareIt is a convenient cleaning system software,allow users to clean temporary files and software cache.You must first uninstall the andclear if you installed andclear它是一款清理临时文件的软件,如果之前安装过得卸载后再能重新安装新版本。Feature1) Clear browsing history2) Clear software cache3 ...
Android 提供ProgressDialog,可以提示进度,但你也可以自己实现,示例如下:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_gravity="center_vertical" android:layout_width="fill_paren ...
Android 任务管理器下载
http://code.google.com/p/andbox/
第一种方法
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_HOME);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
第二种方法
此方法其实不是主要是屏蔽Keycode_Back,让它不结束(finish())Activity,直接显示HOME界面。
PackageManager pm = getPackageM ...
Android 的Timer 一般如下面所写
Timer timer = new Timer();
TimerTask task = new TimerTask() {
public void run() {
Message message = new Message();
message.what = 1;
handler.sendMessage(message);
}
};
final Handler handler = new Handler() {
public void handleMessage(Mes ...
先上图再说,实现效果如下图,选项可多少可变化。
BaseExpandableListAdapter实现
import java.util.List;
import android.content.Context;
import android.graphics.drawable.Drawable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseExpandab ...
public final class Manifest {
public static final class permission {
/** Allows read/write access to the "properties" table in the checkin
database, to change values that get uploaded.
*/
public static final String ACCESS_CHECKIN_PROPERTIES=" ...
最近试着做下图的界面,源码分享,先上图看看效果吧,下面代码为白色区域。
xml Layout
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent" ...
BaseAdapter
public class RecentAdapter extends BaseAdapter {
private class RecentViewHolder {
TextView appName;
ImageView appIcon;
TextView appSize;
}
private List<ResolveInfo> mAppList;
private LayoutInflater mInflater;
private PackageManager pm;
public RecentAd ...
示图
import android.app.AlertDialog;
import android.content.Context;
import android.view.View;
import com.iwidsets.task.manager.R;
public class HelpDialog extends AlertDialog {
public HelpDialog(Context context) {
super(context);
final View view = getLayoutInflater().inflate(R. ...
创建应用程序的快捷方式如下:
Action
private static final String ACTION_INSTALL_SHORTCUT = "com.android.launcher.action.INSTALL_SHORTCUT";
Intent shortcutIntent = new Intent(ACTION_INSTALL_SHORTCUT);
shortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME,
getString(R.string.app_name)) ...