下面的代码片段试图存储一个Gesture
对象。
private Gesture mGesture;
private GestureLibrary store;
store.addGesture("test", mGesture);
store.save();
我想知道mGesture
存储在哪里?
紧跟上面的代码,作者给出如下代码:
final String path = new File(Environment.getExternalStorageDirectory(),
"gestures").getAbsolutePath();
Toast.makeText(this, getString(R.string.save_success, path), Toast.LENGTH_LONG).show();
所以我猜mGesture
它存储在由path
. 但我不知道什么是路径。我试过调试。它给了我类似的东西:“storage/emulated/0/gestures/”。但是我在我的设备上找不到这个目录。顺便说一句,我的设备是nexus 4