Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android怎樣自定義Intent選擇界面的標題

android怎樣自定義Intent選擇界面的標題

編輯:關於Android編程

可以使用 Intent.createChooser() 的方法來創建 Intent,並傳入想要的 Sting 作為標題。
以wallpaper 選擇框為例,當在Launcher workspace的空白區域上長按,會彈出wallpaper的選擇框,選擇框的標題為”Choose wallpaper from”,如下:


 
private void startWallpaper() {
        showWorkspace(true);
        final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
        Intent chooser = Intent.createChooser(pickWallpaper, getText(R.string.chooser_wallpaper));
        // NOTE: Adds a configure option to the chooser if the wallpaper supports it
        startActivityForResult(chooser, REQUEST_PICK_WALLPAPER);
    }
 
其中,R.string.chooser_wallpaper對應的字串內容就是”Choose wallpaper from”,定義在Launcher2的Strings.xml中

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved