1,创建如下新文件
froyo\frameworks\base\core\res\res\layout\control_panel.xml 代码如下
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2006 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!--
This is the basic layout for a screen, with all of its features enabled.
-->
<!-- Title bar and content -->
<com.android.server.status.SystemMenuBarView xmlns:android="http://schemas.android.com/apk/res/android"
android:fitsSystemWindows="true"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
>
<!-- Title bar -->
<ImageView android:id="@+id/panel1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="/blog_article/@drawable/panel_back/index.html"
android:padding="2dip"
/>
<ImageView android:id="@+id/panel2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="/blog_article/@drawable/panel_search/index.html"
android:padding="2dip"
/>
<ImageView android:id="@+id/panel3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="/blog_article/@drawable/panel_menu/index.html"
android:padding="2dip"
/>
<ImageView android:id="@+id/panel4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="/blog_article/@drawable/panel_home/index.html"
android:padding="2dip"
/>
</com.android.server.status.SystemMenuBarView>
另外 添加布局文件对应的图片资源文件,分竖屏和横屏
froyo\frameworks\base\services\java\com\android\server\status\SystemMenuBarView.java 代码如下
package com.android.server.status;
import android.content.Context;
import android.content.res.Configuration;
import android.util.AttributeSet;
import android.util.Log;
import android.widget.ImageView;
import android.widget.LinearLayout;
import com.android.internal.R;
public class SystemMenuBarView extends LinearLayout {
private Context mContext;
private int mOrientation = -1;
private int mCount = 0;
private ImageView iv1, iv2, iv3, iv4;
public SystemMenuBarView(Context context) {
super(context);
// TODO Auto-generated constructor stub
this.mContext = context;
}
public SystemMenuBarView(Context context, AttributeSet attrs) {
super(context, attrs);
// TODO Auto-generated constructor stub
}
@Override
protected void onFinishInflate() {
super.onFinishInflate();
iv1 = (ImageView)findViewById(R.id.panel1);
iv2 = (ImageView)findViewById(R.id.panel2);
iv3 = (ImageView)findViewById(R.id.panel3);
iv4 = (ImageView)findViewById(R.id.panel4);
}
@Override
protected void onConfigurationChanged(Configuration newConfig) {
// TODO Auto-generated method stub
if (mOrientation != newConfig.orientation){
//Log.i("orie", "mCount:" + mCount++ + " mOrientation: " + mOrientation + " newConfig.orientation: " + newConfig.orientation);
mOrientation = newConfig.orientation;
if (newConfig.orientation==Configuration.ORIENTATION_LANDSCAPE){
Log.i("orie", "land");
setOrientation(LinearLayout.VERTICAL);
iv1.setImageResource(R.drawable.panel_back);
iv2.setImageResource(R.drawable.panel_search);
iv3.setImageResource(R.drawable.panel_menu);
iv4.setImageResource(R.drawable.panel_home);
}else{
Log.i("orie", "port");
setOrientation(LinearLayout.HORIZONTAL);
iv1.setImageResource(R.drawable.panel_home);
iv2.setImageResource(R.drawable.panel_menu);
iv3.setImageResource(R.drawable.panel_search);
iv4.setImageResource(R.drawable.panel_back);
}
}
Log.i("orie", "executed");
super.onConfigurationChanged(newConfig);
}
}
分析:netstat -an查看到大量的80端口进程僵死,重启tomcat.tomcat启动失败,网页依然无法打开.
停止tomcat进程shutdown.sh,停止tomcat后telnet 127.0.0.1 80,发现80端口依然可用。netstat -an|grep 80 查看发现有许多80端口进程在里面,使用kill pid命令终止进程,无用。使用lsof -i :80|grep -v "PID"|awk '{print "kill -9",$2}'命令后所有80端口进程删除。
大家都知道Android从1.5开始刚插入SD卡时系统会调用MediaScanner服务进行后台扫描,索引新的歌曲、图片和视频等信息,如果我们需要快速提取图片和视频缩略图可以直接访问
android.provider.MediaStore.Images.Thumbnails
和android.provider.MediaStore.Video.Thumbnails这两个数据库,即可查询出来缩略图
如何判断文件呢?
可以通过Cursor遍历数据库,对比INTERNAL_CONTENT_URI字段的值,这是一个Uri我们可以转成String,这里保存着Android手机SD卡上的多媒体文件完整路径,
有关具体的缩略图可以通过getThumbnail(ContentResolver cr, long origId, int kind,
BitmapFactory.Options options) 或getThumbnail(ContentResolver cr, long origId,
long groupId, int kind, BitmapFactory.Options options)
方法获取,这两种方法返回Bitmap类型,而缩略图的分辨率可以从HEIGHT和WIDTH两个字段提取,在Android上缩略图分为两种,通过读取KIND字段来获得,分别为MICRO_KIND和MINI_KIND
分别为微型和迷你两种缩略模式,前者的分辨率更低。这样我们平时获取文件系统的某个图片预览时,可以直接调用系统缩略图,而不用自己重新计算。
最后Android123提示大家,缩略图保存在SD卡的DCIM目录,里面的.thumbnails是图片的,而.video_thumbnails是视频的,这两个文件夹为隐藏属性,一般的文件管理器都可以看到。
从Android2.2开始系统新增了一个缩略图ThumbnailUtils类,位于framework的android.media.ThumbnailUtils位置,可以帮助我们从mediaprovider中获取系统中的视频或图片文件的缩略图,该类提供了三种静态方法可以直接调用获取。
1. static Bitmap createVideoThumbnail(String filePath, int kind)
//获取视频文件的缩略图,第一个参数为视频文件的位置,比如/sdcard/android123.3gp,而第二个参数可以为MINI_KIND或MICRO_KIND最终和分辨率有关
2. static Bitmap extractThumbnail(Bitmap source, int width, int height,
int options) //直接对Bitmap进行缩略操作,最后一个参数定义为OPTIONS_RECYCLE_INPUT,来回收资源
3.
static Bitmap extractThumbnail(Bitmap source, int width, int height) //
这个和上面的方法一样,无options选项
最后Android开发网再次提醒大家,ThumbnailUtils类是API
Level从8或更高才开始支持的。