> 編寫:[jdneo](https://github.com/jdneo) - 原文:[http://developer.android.com/training/beam-files/receive-files.html](http://developer.android.com/training/beam-files/receive-files.html)
Android Beam文件傳輸將文件拷貝至接收設備上的一個特殊目錄。同時使用Android Media Scanner掃描拷貝的文件,并在[MediaStore](http://developer.android.com/reference/android/provider/MediaStore.html) provider中為媒體文件添加對應的條目記錄。這節課將向你展示當文件拷貝完成時要如何響應,以及在接收設備上應該如何定位拷貝的文件。
### 響應請求并顯示數據
當Android Beam文件傳輸將文件拷貝至接收設備后,它會發布一個通知,該通知包含有一個[Intent](http://developer.android.com/reference/android/content/Intent.html),該Intent擁有:[ACTION_VIEW](http://developer.android.com/reference/android/content/Intent.html#ACTION_VIEW)這一Action,首個被傳輸文件的MIME類型,以及一個指向第一個文件的URI。當用戶點擊了這個通知后,Intent會被發送至系統。為了讓你的應用程序能夠響應這個Intent,我們需要為響應的[Activity](# "An activity represents a single screen with a user interface.")所對應的[<](http://developer.android.com/guide/topics/manifest/activity-element.html)[activity](# "An activity represents a single screen with a user interface.")>標簽添加一個[`<intent-filter>`](http://developer.android.com/guide/topics/manifest/intent-filter-element.html)標簽,在[`<intent-filter>`](http://developer.android.com/guide/topics/manifest/intent-filter-element.html)標簽中,添加下面的子標簽:
[`<action android:name="android.intent.action.VIEW" />`](http://developer.android.com/guide/topics/manifest/action-element.html)
該標簽用來匹配從通知發出的Intent,這些Intent具有[ACTION_VIEW](http://developer.android.com/reference/android/content/Intent.html#ACTION_VIEW)這一Action。
[`<category android:name="android.intent.category.CATEGORY_DEFAULT" />`](http://developer.android.com/guide/topics/manifest/category-element.html)
該標簽用來匹配不含有顯式Category的[Intent](http://developer.android.com/reference/android/content/Intent.html)對象。
[`<data android:mimeType="mime-type" />`](http://developer.android.com/guide/topics/manifest/data-element.html)
匹配一個MIME類型。僅僅指定那些你的應用能夠處理的類型。
例如,下面的例子展示了如何添加一個intent filter來激活你的[activity](# "An activity represents a single screen with a user interface."):
~~~
<activity
android:name="com.example.android.nfctransfer.ViewActivity"
android:label="Android Beam Viewer" >
...
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
...
</intent-filter>
</activity>
~~~
> **Note:**不僅僅只有Android Beam文件傳輸會發送含有[ACTION_VIEW](http://developer.android.com/reference/android/content/Intent.html#ACTION_VIEW)這一Action的Intent。在接收設備上的其它應用也有可能會發送含有該Action的intent。我們馬上會進一步討論這一問題。
### 請求文件讀權限
如果要讀取Android Beam文件傳輸所拷貝到設備上的文件,需要[READ_EXTERNAL_STORAGE](http://developer.android.com/reference/android/Manifest.permission.html#READ_EXTERNAL_STORAGE)權限。例如:
~~~
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
~~~
如果你希望將文件拷貝至應用程序自己的存儲區,那么需要的權限改為[WRITE_EXTERNAL_STORAGE](http://developer.android.com/reference/android/Manifest.permission.html#WRITE_EXTERNAL_STORAGE),另外[WRITE_EXTERNAL_STORAGE](http://developer.android.com/reference/android/Manifest.permission.html#WRITE_EXTERNAL_STORAGE)權限包含了[READ_EXTERNAL_STORAGE](http://developer.android.com/reference/android/Manifest.permission.html#READ_EXTERNAL_STORAGE)權限。
> **Note:**對于Android 4.2.2(API Level 17)及之前版本的系統,[READ_EXTERNAL_STORAGE](http://developer.android.com/reference/android/Manifest.permission.html#READ_EXTERNAL_STORAGE)權限僅在用戶選擇要讀文件時才是強制需要的。而在今后的版本中會在所有情況下都需要該權限。為了保證未來應用程序在的穩定性,建議在Manifest清單文件中聲明該權限。
由于你的應用對于其自身的內部存儲區域具有控制權,所以若要將文件拷貝至應用程序自身的的內部存儲區域,寫權限是不需要聲明的。
### 獲取拷貝文件的目錄
Android Beam文件傳輸一次性將所有文件拷貝到目標設備的一個目錄中,Android Beam文件傳輸通知所發出的[Intent](http://developer.android.com/reference/android/content/Intent.html)中包含有URI,該URI指向了第一個被傳輸的文件。然而,你的應用程序也有可能接收到除了Android Beam文件傳輸之外的某個來源所發出的含有[ACTION_VIEW](http://developer.android.com/reference/android/content/Intent.html#ACTION_VIEW)這一Action的Intent。為了明確你應該如何處理接收的Intent,你需要檢查它的Scheme和Authority。
可以調用[Uri.getScheme()](http://developer.android.com/reference/android/net/Uri.html#getScheme())獲得URI的Scheme,下面的代碼展示了如何確定Scheme并對URI進行相應的處理:
~~~
public class MainActivity extends Activity {
...
// A File object containing the path to the transferred files
private File mParentPath;
// Incoming Intent
private Intent mIntent;
...
/*
* Called from onNewIntent() for a SINGLE_TOP Activity
* or onCreate() for a new Activity. For onNewIntent(),
* remember to call setIntent() to store the most
* current Intent
*
*/
private void handleViewIntent() {
...
// Get the Intent action
mIntent = getIntent();
String action = mIntent.getAction();
/*
* For ACTION_VIEW, the Activity is being asked to display data.
* Get the URI.
*/
if (TextUtils.equals(action, Intent.ACTION_VIEW)) {
// Get the URI from the Intent
Uri beamUri = mIntent.getData();
/*
* Test for the type of URI, by getting its scheme value
*/
if (TextUtils.equals(beamUri.getScheme(), "file")) {
mParentPath = handleFileUri(beamUri);
} else if (TextUtils.equals(
beamUri.getScheme(), "content")) {
mParentPath = handleContentUri(beamUri);
}
}
...
}
...
}
~~~
### 從File URI中獲取目錄
如果接收的[Intent](http://developer.android.com/reference/android/content/Intent.html)包含一個File URI,則該URI包含了一個文件的絕對文件名,它包括了完整的路徑和文件名。對于Android Beam文件傳輸來說,目錄路徑指向了其它被傳輸文件的位置(如果有其它傳輸文件的話),要獲得這個目錄路徑,需要取得URI的路徑部分(URI中除去“file:”前綴的部分),根據路徑創建一個[File](http://developer.android.com/reference/java/io/File.html)對象,然后獲取這個[File](http://developer.android.com/reference/java/io/File.html)的父目錄:
~~~
...
public String handleFileUri(Uri beamUri) {
// Get the path part of the URI
String fileName = beamUri.getPath();
// Create a File object for this filename
File copiedFile = new File(fileName);
// Get a string containing the file's parent directory
return copiedFile.getParent();
}
...
~~~
### 從Content URI獲取目錄
如果接收的[Intent](http://developer.android.com/reference/android/content/Intent.html)包含一個Content URI,這個URI可能指向的是存儲于[MediaStore](http://developer.android.com/reference/android/provider/MediaStore.html) Content Provider的目錄和文件名。你可以通過檢測URI的Authority值來判斷它是否是來自于[MediaStore](http://developer.android.com/reference/android/provider/MediaStore.html)的Content URI。一個[MediaStore](http://developer.android.com/reference/android/provider/MediaStore.html)的Content URI可能來自Android Beam文件傳輸也可能來自其它應用程序,但不管怎么樣,你都能根據該Content URI獲得一個目錄路徑和文件名。
你也可以接收一個含有[ACTION_VIEW](http://developer.android.com/reference/android/content/Intent.html#ACTION_VIEW)這一Action的Intent,它包含的Content URI針對于Content Provider,而不是[MediaStore](http://developer.android.com/reference/android/provider/MediaStore.html),在這種情況下,這個Content URI不包含[MediaStore](http://developer.android.com/reference/android/provider/MediaStore.html)的Authority,且這個URI一般不指向一個目錄。
> **Note:**對于Android Beam文件傳輸,接收在含有[ACTION_VIEW](http://developer.android.com/reference/android/content/Intent.html#ACTION_VIEW)的Intent中的Content URI時,如果第一個接收的文件,其MIME類型為“audio/_”,“image/_”或者“video/*”,Android Beam文件傳輸會在它存儲傳輸文件的目錄內運行Media Scanner,以此為媒體文件添加索引。同時Media Scanner將結果寫入[MediaStore](http://developer.android.com/reference/android/provider/MediaStore.html)的Content Provider,之后它將第一個文件的Content URI回遞給Android Beam文件傳輸。這個Content URI就是你在通知[Intent](http://developer.android.com/reference/android/content/Intent.html)中所接收到的。要獲得第一個文件的目錄,你需要使用該Content URI從[MediaStore](http://developer.android.com/reference/android/provider/MediaStore.html)中獲取它。
### 確定Content Provider
為了明確你能從Content URI中獲取文件目錄,你可以通過調用[Uri.getAuthority()](http://developer.android.com/reference/android/net/Uri.html#getAuthority())獲取URI的Authority,以此確定與該URI相關聯的Content Provider。其結果有兩個可能的值:
**[MediaStore.AUTHORITY](http://developer.android.com/reference/android/provider/MediaStore.html#AUTHORITY)**
表明這個URI關聯了被[MediaStore](http://developer.android.com/reference/android/provider/MediaStore.html)記錄的一個文件或者多個文件。可以從[MediaStore](http://developer.android.com/reference/android/provider/MediaStore.html)中獲取文件的全名,目錄名就自然可以從文件全名中獲取。
**其他值**
來自其他Content Provider的Content URI。可以顯示與該Content URI相關聯的數據,但是不要嘗試去獲取文件目錄。
要從[MediaStore](http://developer.android.com/reference/android/provider/MediaStore.html)的Content URI中獲取目錄,我們需要執行一個查詢操作,它將[Uri](http://developer.android.com/reference/android/net/Uri.html)參數指定為收到的ContentURI,將[MediaColumns.DATA](http://developer.android.com/reference/android/provider/MediaStore.MediaColumns.html#DATA)列作為投影(Projection)。返回的[Cursor](http://developer.android.com/reference/android/database/Cursor.html)對象包含了URI所代表的文件的完整路徑和文件名。該目錄路徑下還包含了由Android Beam文件傳輸傳送到該設備上的其它文件。
下面的代碼展示了你要如何測試Content URI的Authority,并獲取傳輸文件的路徑和文件名:
~~~
...
public String handleContentUri(Uri beamUri) {
// Position of the filename in the query Cursor
int filenameIndex;
// File object for the filename
File copiedFile;
// The filename stored in MediaStore
String fileName;
// Test the authority of the URI
if (!TextUtils.equals(beamUri.getAuthority(), MediaStore.AUTHORITY)) {
/*
* Handle content URIs for other content providers
*/
// For a MediaStore content URI
} else {
// Get the column that contains the file name
String[] projection = { MediaStore.MediaColumns.DATA };
Cursor pathCursor =
getContentResolver().query(beamUri, projection,
null, null, null);
// Check for a valid cursor
if (pathCursor != null &&
pathCursor.moveToFirst()) {
// Get the column index in the Cursor
filenameIndex = pathCursor.getColumnIndex(
MediaStore.MediaColumns.DATA);
// Get the full file name including path
fileName = pathCursor.getString(filenameIndex);
// Create a File object for the filename
copiedFile = new File(fileName);
// Return the parent directory of the file
return new File(copiedFile.getParent());
} else {
// The query didn't work; return null
return null;
}
}
}
...
~~~
要學習更多關于從Content Provider獲取數據的知識,可以閱讀:[Retrieving Data from the Provider](http://developer.android.com/guide/topics/providers/content-provider-basics.html#SimpleQuery)。
- 序言
- Android入門基礎:從這里開始
- 建立第一個App
- 創建Android項目
- 執行Android程序
- 建立簡單的用戶界面
- 啟動其他的Activity
- 添加ActionBar
- 建立ActionBar
- 添加Action按鈕
- 自定義ActionBar的風格
- ActionBar的覆蓋層疊
- 兼容不同的設備
- 適配不同的語言
- 適配不同的屏幕
- 適配不同的系統版本
- 管理Activity的生命周期
- 啟動與銷毀Activity
- 暫停與恢復Activity
- 停止與重啟Activity
- 重新創建Activity
- 使用Fragment建立動態的UI
- 創建一個Fragment
- 建立靈活動態的UI
- Fragments之間的交互
- 數據保存
- 保存到Preference
- 保存到文件
- 保存到數據庫
- 與其他應用的交互
- Intent的發送
- 接收Activity返回的結果
- Intent過濾
- Android分享操作
- 分享簡單的數據
- 給其他App發送簡單的數據
- 接收從其他App返回的數據
- 給ActionBar增加分享功能
- 分享文件
- 建立文件分享
- 分享文件
- 請求分享一個文件
- 獲取文件信息
- 使用NFC分享文件
- 發送文件給其他設備
- 接收其他設備的文件
- Android多媒體
- 管理音頻播放
- 控制音量與音頻播放
- 管理音頻焦點
- 兼容音頻輸出設備
- 拍照
- 簡單的拍照
- 簡單的錄像
- 控制相機硬件
- 打印
- 打印照片
- 打印HTML文檔
- 打印自定義文檔
- Android圖像與動畫
- 高效顯示Bitmap
- 高效加載大圖
- 非UI線程處理Bitmap
- 緩存Bitmap
- 管理Bitmap的內存
- 在UI上顯示Bitmap
- 使用OpenGL ES顯示圖像
- 建立OpenGL ES的環境
- 定義Shapes
- 繪制Shapes
- 運用投影與相機視圖
- 添加移動
- 響應觸摸事件
- 添加動畫
- View間漸變
- 使用ViewPager實現屏幕側滑
- 展示卡片翻轉動畫
- 縮放View
- 布局變更動畫
- Android網絡連接與云服務
- 無線連接設備
- 使得網絡服務可發現
- 使用WiFi建立P2P連接
- 使用WiFi P2P服務
- 執行網絡操作
- 連接到網絡
- 管理網絡
- 解析XML數據
- 高效下載
- 為網絡訪問更加高效而優化下載
- 最小化更新操作的影響
- 避免下載多余的數據
- 根據網絡類型改變下載模式
- 云同步
- 使用備份API
- 使用Google Cloud Messaging
- 解決云同步的保存沖突
- 使用Sync Adapter傳輸數據
- 創建Stub授權器
- 創建Stub Content Provider
- 創建Sync Adpater
- 執行Sync Adpater
- 使用Volley執行網絡數據傳輸
- 發送簡單的網絡請求
- 建立請求隊列
- 創建標準的網絡請求
- 實現自定義的網絡請求
- Android聯系人與位置信息
- Android聯系人信息
- 獲取聯系人列表
- 獲取聯系人詳情
- 使用Intents修改聯系人信息
- 顯示聯系人頭像
- Android位置信息
- 獲取最后可知位置
- 獲取位置更新
- 顯示位置地址
- 創建和監視地理圍欄
- Android可穿戴應用
- 賦予Notification可穿戴特性
- 創建Notification
- 在Notifcation中接收語音輸入
- 為Notification添加顯示頁面
- 以Stack的方式顯示Notifications
- 創建可穿戴的應用
- 創建并運行可穿戴應用
- 創建自定義的布局
- 添加語音功能
- 打包可穿戴應用
- 通過藍牙進行調試
- 創建自定義的UI
- 定義Layouts
- 創建Cards
- 創建Lists
- 創建2D-Picker
- 創建確認界面
- 退出全屏的Activity
- 發送并同步數據
- 訪問可穿戴數據層
- 同步數據單元
- 傳輸資源
- 發送與接收消息
- 處理數據層的事件
- Android TV應用
- 創建TV應用
- 創建TV應用的第一步
- 處理TV硬件部分
- 創建TV的布局文件
- 創建TV的導航欄
- 創建TV播放應用
- 創建目錄瀏覽器
- 提供一個Card視圖
- 創建詳情頁
- 顯示正在播放卡片
- 幫助用戶在TV上探索內容
- TV上的推薦內容
- 使得TV App能夠被搜索
- 使用TV應用進行搜索
- 創建TV游戲應用
- 創建TV直播應用
- TV Apps Checklist
- Android企業級應用
- Ensuring Compatibility with Managed Profiles
- Implementing App Restrictions
- Building a Work Policy Controller
- Android交互設計
- 設計高效的導航
- 規劃屏幕界面與他們之間的關系
- 為多種大小的屏幕進行規劃
- 提供向下和橫向導航
- 提供向上和歷史導航
- 綜合:設計樣例 App
- 實現高效的導航
- 使用Tabs創建Swipe視圖
- 創建抽屜導航
- 提供向上的導航
- 提供向后的導航
- 實現向下的導航
- 通知提示用戶
- 建立Notification
- 當啟動Activity時保留導航
- 更新Notification
- 使用BigView風格
- 顯示Notification進度
- 增加搜索功能
- 建立搜索界面
- 保存并搜索數據
- 保持向下兼容
- 使得你的App內容可被Google搜索
- 為App內容開啟深度鏈接
- 為索引指定App內容
- Android界面設計
- 為多屏幕設計
- 兼容不同的屏幕大小
- 兼容不同的屏幕密度
- 實現可適應的UI
- 創建自定義View
- 創建自定義的View類
- 實現自定義View的繪制
- 使得View可交互
- 優化自定義View
- 創建向后兼容的UI
- 抽象新的APIs
- 代理至新的APIs
- 使用舊的APIs實現新API的效果
- 使用版本敏感的組件
- 實現輔助功能
- 開發輔助程序
- 開發輔助服務
- 管理系統UI
- 淡化系統Bar
- 隱藏系統Bar
- 隱藏導航Bar
- 全屏沉浸式應用
- 響應UI可見性的變化
- 創建使用Material Design的應用
- 開始使用Material Design
- 使用Material的主題
- 創建Lists與Cards
- 定義Shadows與Clipping視圖
- 使用Drawables
- 自定義動畫
- 維護兼容性
- Android用戶輸入
- 使用觸摸手勢
- 檢測常用的手勢
- 跟蹤手勢移動
- Scroll手勢動畫
- 處理多觸摸手勢
- 拖拽與縮放
- 管理ViewGroup中的觸摸事件
- 處理鍵盤輸入
- 指定輸入法類型
- 處理輸入法可見性
- 兼容鍵盤導航
- 處理按鍵動作
- 兼容游戲控制器
- 處理控制器輸入動作
- 支持不同的Android系統版本
- 支持多個控制器
- Android后臺任務
- 在IntentService中執行后臺任務
- 創建IntentService
- 發送工作任務到IntentService
- 報告后臺任務執行狀態
- 使用CursorLoader在后臺加載數據
- 使用CursorLoader執行查詢任務
- 處理查詢的結果
- 管理設備的喚醒狀態
- 保持設備的喚醒
- 制定重復定時的任務
- Android性能優化
- 管理應用的內存
- 代碼性能優化建議
- 提升Layout的性能
- 優化layout的層級
- 使用include標簽重用layouts
- 按需加載視圖
- 使得ListView滑動順暢
- 優化電池壽命
- 監測電量與充電狀態
- 判斷與監測Docking狀態
- 判斷與監測網絡連接狀態
- 根據需要操作Broadcast接受者
- 多線程操作
- 在一個線程中執行一段特定的代碼
- 為多線程創建線程池
- 啟動與停止線程池中的線程
- 與UI線程通信
- 避免出現程序無響應ANR
- JNI使用指南
- 優化多核處理器(SMP)下的Android程序
- Android安全與隱私
- Security Tips
- 使用HTTPS與SSL
- 為防止SSL漏洞而更新Security
- 使用設備管理條例增強安全性
- Android測試程序
- 測試你的Activity
- 建立測試環境
- 創建與執行測試用例
- 測試UI組件
- 創建單元測試
- 創建功能測試
- 術語表