How to open the My Files folder in Android Programatically (using Intent)?

后端 未结 6 712
说谎
说谎 2020-12-28 22:30

I am using the below code which opens up the Gallery, Music Player, Dropbox and Contacts, i want the My Files folder to get open programatically, please let me know if there

6条回答
  •  北荒
    北荒 (楼主)
    2020-12-28 23:09

    If you want to open samsung My Files application try this below code.

    Intent intent = new Intent("com.sec.android.app.myfiles.PICK_DATA");              
    intent.putExtra("CONTENT_TYPE", "*/*");
    startActivityForResult(intent, CHOOSE_FILE_REQUESTCODE); 
    

提交回复
热议问题