andriod 图片选择器

Posted gisoracle

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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"));  
            }  
        });  
    }  
}             
      

  

以上是关于andriod 图片选择器的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段——CSS选择器

VSCode自定义代码片段6——CSS选择器

Android - 片段中的联系人选择器

日期选择器对话框在片段中不起作用[关闭]

在标签片段android中添加谷歌地点选择器

Andriod里面的Selector是啥东西,实现啥功能???