• 博客园logo
  • 会员
  • 周边
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录

gisoracle

  • 博客园
  • 联系
  • 订阅
  • 管理

公告

View Post

andriod 图片选择器

<?xml version="1.0" encoding="utf-8"?>  
<manifest xmlns:android="http://schemas.android.com/apk/res/android"  
    package="com.genwoxue.pictureviewer"  
    android:versionCode="1"  
    android:versionName="1.0" >  
  
    <uses-sdk  
        android:minSdkVersion="10"  
        android:targetSdkVersion="15" />  
  
    <application  
        android:allowBackup="true"  
        android:icon="@drawable/ic_launcher"  
        android:label="@string/app_name"  
        android:theme="@style/AppTheme" >  
        <activity  
            android:name="com.genwoxue.pictureviewer.MainActivity"  
            android:label="@string/app_name" >  
            <intent-filter>  
                <action android:name="android.intent.action.GET_CONTENT" />  
                <category android:name="android.intent.category.DEFAULT" />  
                <category android:name="android.intent.category.OPENABLE" />  
                <data android:mimeType="image/jpeg" />  
            </intent-filter>  
              
        </activity>  
    </application>  
  
</manifest>  
mport android.os.Bundle;  
import android.app.Activity;  
import android.content.Intent;  
import android.view.View;  
import android.view.View.OnClickListener;  
import android.widget.Button;  
  
public class MainActivity extends Activity {  
  
    private Button btnChoose=null;  
    @Override  
     public void onCreate(Bundle savedInstanceState)     
    {     
        super.onCreate(savedInstanceState);                
        setContentView(R.layout.activity_main);  
        btnChoose=(Button)super.findViewById(R.id.choose);  
        btnChoose.setOnClickListener(new OnClickListener(){  
            public void onClick(View v)  
            {     
                //系统会把所有查看Image类型的应用显示在列表中  
                Intent intent=new Intent();  
                intent.setAction(Intent.ACTION_GET_CONTENT);  
                intent.setType("image/*");  
                MainActivity.this.startActivity(intent.createChooser(intent, "选择图片查看APP"));  
            }  
        });  
    }  
}             
      

  

posted on 2016-03-05 21:33  gisai  阅读(315)  评论(0)    收藏  举报

刷新页面返回顶部
 
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3