当前位置:  编程技术>移动开发
本页文章导读:
    ▪virtual<1&gt        virtual<一> 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 Apa.........
    ▪ 下令 查看 删除 80端口进程        命令 查看 删除 80端口进程 分析:netstat -an查看到大量的80端口进程僵死,重启tomcat.tomcat启动失败,网页依然无法打开.停止tomcat进程shutdown.sh,停止tomcat后telnet 127.0.0.1 80,发现80端口依然可用。netst.........
    ▪ 获取手机图片跟视频的缩略图       获取手机图片和视频的缩略图 大家都知道Android从1.5开始刚插入SD卡时系统会调用MediaScanner服务进行后台扫描,索引新的歌曲、图片和视频等信息,如果我们需要快速提取图片和视频缩略图可.........

[1]virtual<1&gt
    来源: 互联网  发布时间: 2014-02-18
virtual<一>

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);
    }
}


    
[2] 下令 查看 删除 80端口进程
    来源: 互联网  发布时间: 2014-02-18
命令 查看 删除 80端口进程
分析: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端口进程删除。

    
[3] 获取手机图片跟视频的缩略图
    来源: 互联网  发布时间: 2014-02-18
获取手机图片和视频的缩略图

大家都知道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或更高才开始支持的。


    
最新技术文章:
▪Android开发之登录验证实例教程
▪Android开发之注册登录方法示例
▪Android获取手机SIM卡运营商信息的方法
▪Android实现将已发送的短信写入短信数据库的...
▪Android发送短信功能代码
▪Android根据电话号码获得联系人头像实例代码
▪Android中GPS定位的用法实例
▪Android实现退出时关闭所有Activity的方法
▪Android实现文件的分割和组装
▪Android录音应用实例教程
▪Android双击返回键退出程序的实现方法
▪Android实现侦听电池状态显示、电量及充电动...
▪Android获取当前已连接的wifi信号强度的方法
▪Android实现动态显示或隐藏密码输入框的内容
▪根据USER-AGENT判断手机类型并跳转到相应的app...
▪Android Touch事件分发过程详解
▪Android中实现为TextView添加多个可点击的文本
▪Android程序设计之AIDL实例详解
▪Android显式启动与隐式启动Activity的区别介绍
▪Android按钮单击事件的四种常用写法总结
▪Android消息处理机制Looper和Handler详解
▪Android实现Back功能代码片段总结
▪Android实用的代码片段 常用代码总结
▪Android实现弹出键盘的方法
▪Android中通过view方式获取当前Activity的屏幕截...
▪Android提高之自定义Menu(TabMenu)实现方法
▪Android提高之多方向抽屉实现方法
▪Android提高之MediaPlayer播放网络音频的实现方法...
▪Android提高之MediaPlayer播放网络视频的实现方法...
▪Android提高之手游转电视游戏的模拟操控
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3