2016-06-13 20 views
1

私は単純なファイル選択ダイアログをsl4aで探しています。 hereいくつかのネイティブダイアログが見つかりましたが、探していたものが見つかりませんでした。python sl4aのファイルダイアログ

すぐに利用できるものを見つけることで時間を節約できたらと思っています。 filename = fileopendialog()のような最小限のコードはボーナスになります。

アイデア?

答えて

0

私は自分自身を書くことに決めました(参考までに下記を参照)。これは、おそらくより良い、任意の提案を歓迎することができます。

import android, os, time 

droid = android.Android() 
# Specify root directory and make sure it exists. 
base_dir = '/sdcard/sl4a/scripts/' 
if not os.path.exists(base_dir): os.makedirs(base_dir) 

def show_dir(path=base_dir): 
    """Shows the contents of a directory in a list view.""" 
    #The files and directories under "path" 
    nodes = os.listdir(path) 
    #Make a way to go up a level. 
    if path != base_dir: 
     nodes.insert(0, '..') 
    droid.dialogCreateAlert(os.path.basename(path).title()) 
    droid.dialogSetItems(nodes) 
    droid.dialogShow() 
    #Get the selected file or directory . 
    result = droid.dialogGetResponse().result 
    droid.dialogDismiss() 
    if 'item' not in result: 
     return 
    target = nodes[result['item']] 
    target_path = os.path.join(path, target) 
    if target == '..': target_path = os.path.dirname(path) 
    #If a directory, show its contents . 
    if os.path.isdir(target_path): 
     show_dir(target_path) 
    #If an file display it. 
    else: 
     droid.dialogCreateAlert('Selected File','{}'.format(target_path)) 
     droid.dialogSetPositiveButtonText('Ok') 
     droid.dialogShow() 
     droid.dialogGetResponse() 

if __name__ == '__main__': 
    show_dir() 
関連する問題