国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 系統(tǒng) > Android > 正文

Android中調(diào)用系統(tǒng)的文件瀏覽器及文件瀏覽器的方法

2020-02-21 17:24:28
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

Android開(kāi)發(fā)的時(shí)候,我們可以調(diào)用自己的瀏覽器打開(kāi)鏈接,這個(gè)時(shí)候需要輸入url,接下來(lái),武林技術(shù)頻道小編將與大家分享Android中調(diào)用系統(tǒng)的文件瀏覽器及文件瀏覽器的方法。

調(diào)用系統(tǒng)自帶的文件瀏覽器
這很簡(jiǎn)單:

/** 調(diào)用文件選擇軟件來(lái)選擇文件 **/ private void showFileChooser() {   intent = new Intent(Intent.ACTION_GET_CONTENT);   intent.setType("*/*");   intent.addCategory(Intent.CATEGORY_OPENABLE);   try {     startActivityForResult(Intent.createChooser(intent, "請(qǐng)選擇一個(gè)要上傳的文件"),         FILE_SELECT_CODE);   } catch (android.content.ActivityNotFoundException ex) {     // Potentially direct the user to the Market with a Dialog     Toast.makeText(getActivity(), "請(qǐng)安裝文件管理器", Toast.LENGTH_SHORT)         .show();   } } 

在catch,我們可以做更多的操作,比如會(huì)跳轉(zhuǎn)到一個(gè)下載文件管理器的頁(yè)面或者等等。

對(duì)于返回的數(shù)據(jù)怎么處理呢。我項(xiàng)目中的上傳是如下接收:

/** 根據(jù)返回選擇的文件,來(lái)進(jìn)行上傳操作 **/   @Override   public void onActivityResult(int requestCode, int resultCode, Intent data) {     // TODO Auto-generated method stub     if (resultCode == Activity.RESULT_OK) {       // Get the Uri of the selected file       Uri uri = data.getData();       String url;       try {         url = FFileUtils.getPath(getActivity(), uri);         Log.i("ht", "url" + url);         String fileName = url.substring(url.lastIndexOf("/") + 1);         intent = new Intent(getActivity(), UploadServices.class);         intent.putExtra("fileName", fileName);         intent.putExtra("url", url);         intent.putExtra("type ", "");         intent.putExtra("fuid", "");         intent.putExtra("type", "");          getActivity().startService(intent);        } catch (URISyntaxException e) {         // TODO Auto-generated catch block         e.printStackTrace();       }     }     super.onActivityResult(requestCode, resultCode, data);   } 

???
自制文件瀏覽器:
這里只加一些簡(jiǎn)單的圖形:

2016424103446719.jpg (412×563)

來(lái)看代碼:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"   xmlns:tools="http://schemas.android.com/tools"   android:layout_width="match_parent"   android:layout_height="wrap_content"   android:orientation="vertical"   android:layout_gravity="center_horizontal"   tools:context=".MainActivity" >    <TextView     android:id="@+id/txt1"     android:layout_width="wrap_content"     android:layout_height="wrap_content" />   <ImageButton      android:id="@+id/imageBt1"     android:layout_width="wrap_content"     android:layout_height="wrap_content"     android:src="@drawable/home"/>    <ListView     android:id="@+id/listFile"     android:layout_width="wrap_content"     android:layout_height="wrap_content" >   </ListView>  </LinearLayout> 
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"   android:layout_width="match_parent"   android:layout_height="match_parent"   android:orientation="horizontal" >    <ImageView     android:id="@+id/images"     android:layout_width="wrap_content"     android:layout_height="wrap_content" />    <TextView     android:id="@+id/txtview"     android:layout_width="wrap_content"     android:layout_height="wrap_content" />  </LinearLayout> 

?

package com.android.xiong.sdfilelook;  import java.io.File; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import android.app.Activity; import android.os.Bundle; import android.os.Environment; import android.view.Menu; import android.view.View; import android.view.View.OnClickListener; import android.widget.AdapterView; import android.widget.AdapterView.OnItemClickListener; import android.widget.ImageButton; import android.widget.ImageView; import android.widget.ListView; import android.widget.SimpleAdapter; import android.widget.TextView;  public class MainActivity extends Activity {    private ListView listfile;   //當(dāng)前文件目錄   private String currentpath;   private TextView txt1;   private ImageView images;   private TextView textview;   private ImageButton imagebt1;    private int[] img = { R.drawable.file, R.drawable.folder, R.drawable.home };   private File[] files;   private SimpleAdapter simple;    @Override   protected void onCreate(Bundle savedInstanceState) {     super.onCreate(savedInstanceState);     setContentView(R.layout.activity_main);     listfile = (ListView) findViewById(R.id.listFile);     txt1 = (TextView) findViewById(R.id.txt1);     imagebt1 = (ImageButton) findViewById(R.id.imageBt1);     init(Environment.getExternalStorageDirectory());     listfile.setOnItemClickListener(new OnItemClickListener() {        @Override       public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,           long arg3) {         // TODO Auto-generated method stub         // 獲取單擊的文件或文件夾的名稱         String folder = ((TextView) arg1.findViewById(R.id.txtview))             .getText().toString();         try {           File filef = new File(currentpath + '/'               + folder);           init(filef);          } catch (Exception e) {           e.printStackTrace();         }        }     });     //回根目錄     imagebt1.setOnClickListener(new OnClickListener() {              @Override       public void onClick(View v) {         init(Environment.getExternalStorageDirectory());         }     });        }   // 界面初始化   public void init(File f) {     if (Environment.getExternalStorageState().equals(         Environment.MEDIA_MOUNTED)) {       // 獲取SDcard目錄下所有文件名       files = f.listFiles();       if (!files.equals(null)) {         currentpath=f.getPath();         txt1.setText("當(dāng)前目錄為:"+f.getPath());         List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();         for (int i = 0; i < files.length; i++) {           Map<String, Object> maps = new HashMap<String, Object>();           if (files[i].isFile())             maps.put("image", img[0]);           else             maps.put("image", img[1]);           maps.put("filenames", files[i].getName());           list.add(maps);         }         simple = new SimpleAdapter(this, list,             R.layout.fileimageandtext, new String[] { "image",                 "filenames" }, new int[] { R.id.images,                 R.id.txtview });         listfile.setAdapter(simple);        }     } else {       System.out.println("該文件為空");     }   }    @Override   public boolean onCreateOptionsMenu(Menu menu) {     // Inflate the menu; this adds items to the action bar if it is present.     getMenuInflater().inflate(R.menu.main, menu);     return true;   }  } 

上面就是武林技術(shù)頻道小編給大家介紹的Android中調(diào)用系統(tǒng)的文件瀏覽器及文件瀏覽器的方法,我們都知道js.Vevb.com是很靠譜,希望這篇文章能夠幫助到你們哦。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 北辰区| 库车县| 兴安县| 正蓝旗| 涿州市| 河北省| 溆浦县| 交城县| 黄浦区| 江川县| 普安县| 米泉市| 安陆市| 巴彦淖尔市| 德惠市| 邢台市| 渭南市| 拜泉县| 瑞丽市| 太仆寺旗| 庄浪县| 霍林郭勒市| 双城市| 恩施市| 庆城县| 凤山县| 平潭县| 安远县| 会昌县| 黑山县| 白朗县| 常熟市| 平山县| 台南县| 将乐县| 连城县| 北流市| 巢湖市| 沭阳县| 昌图县| 晴隆县|