|
9 | 9 |
|
10 | 10 | import com.blankj.androidutilcode.R;
|
11 | 11 | import com.blankj.androidutilcode.base.BaseBackActivity;
|
| 12 | +import com.blankj.utilcode.util.PathUtils; |
12 | 13 | import com.blankj.utilcode.util.SpanUtils;
|
13 | 14 |
|
14 | 15 | /**
|
@@ -42,7 +43,45 @@ public void initView(Bundle savedInstanceState, View contentView) {
|
42 | 43 |
|
43 | 44 | TextView tvAboutMetaData = findViewById(R.id.tv_about_path);
|
44 | 45 | tvAboutMetaData.setText(new SpanUtils()
|
45 |
| -// .appendLine("getRootPath: " + PathUtils.getRootPath()) |
| 46 | + .appendLine("getRootPath: " + PathUtils.getRootPath()) |
| 47 | + .appendLine("getDataPath: " + PathUtils.getDataPath()) |
| 48 | + .appendLine("getDownloadCachePath: " + PathUtils.getDownloadCachePath()) |
| 49 | + |
| 50 | + .appendLine("getInternalAppDataPath: " + PathUtils.getInternalAppDataPath()) |
| 51 | + .appendLine("getInternalAppCodeCacheDir: " + PathUtils.getInternalAppCodeCacheDir()) |
| 52 | + .appendLine("getInternalAppCachePath: " + PathUtils.getInternalAppCachePath()) |
| 53 | + .appendLine("getInternalAppDbsPath: " + PathUtils.getInternalAppDbsPath()) |
| 54 | + .appendLine("getInternalAppDbPath: " + PathUtils.getInternalAppDbPath("demo")) |
| 55 | + .appendLine("getInternalAppFilesPath: " + PathUtils.getInternalAppFilesPath()) |
| 56 | + .appendLine("getInternalAppSpPath: " + PathUtils.getInternalAppSpPath()) |
| 57 | + .appendLine("getInternalAppNoBackupFilesPath: " + PathUtils.getInternalAppNoBackupFilesPath()) |
| 58 | + |
| 59 | + .appendLine("getExternalStoragePath: " + PathUtils.getExternalStoragePath()) |
| 60 | + .appendLine("getExternalMusicPath: " + PathUtils.getExternalMusicPath()) |
| 61 | + .appendLine("getExternalPodcastsPath: " + PathUtils.getExternalPodcastsPath()) |
| 62 | + .appendLine("getExternalRingtonesPath: " + PathUtils.getExternalRingtonesPath()) |
| 63 | + .appendLine("getExternalAlarmsPath: " + PathUtils.getExternalAlarmsPath()) |
| 64 | + .appendLine("getExternalNotificationsPath: " + PathUtils.getExternalNotificationsPath()) |
| 65 | + .appendLine("getExternalPicturesPath: " + PathUtils.getExternalPicturesPath()) |
| 66 | + .appendLine("getExternalMoviesPath: " + PathUtils.getExternalMoviesPath()) |
| 67 | + .appendLine("getExternalDownloadsPath: " + PathUtils.getExternalDownloadsPath()) |
| 68 | + .appendLine("getExternalDcimPath: " + PathUtils.getExternalDcimPath()) |
| 69 | + .appendLine("getExternalDocumentsPath: " + PathUtils.getExternalDocumentsPath()) |
| 70 | + |
| 71 | + .appendLine("getExternalAppDataPath: " + PathUtils.getExternalAppDataPath()) |
| 72 | + .appendLine("getExternalAppCachePath: " + PathUtils.getExternalAppCachePath()) |
| 73 | + .appendLine("getExternalAppFilesPath: " + PathUtils.getExternalAppFilesPath()) |
| 74 | + .appendLine("getExternalAppMusicPath: " + PathUtils.getExternalAppMusicPath()) |
| 75 | + .appendLine("getExternalAppPodcastsPath: " + PathUtils.getExternalAppPodcastsPath()) |
| 76 | + .appendLine("getExternalAppRingtonesPath: " + PathUtils.getExternalAppRingtonesPath()) |
| 77 | + .appendLine("getExternalAppAlarmsPath: " + PathUtils.getExternalAppAlarmsPath()) |
| 78 | + .appendLine("getExternalAppNotificationsPath: " + PathUtils.getExternalAppNotificationsPath()) |
| 79 | + .appendLine("getExternalAppPicturesPath: " + PathUtils.getExternalAppPicturesPath()) |
| 80 | + .appendLine("getExternalAppMoviesPath: " + PathUtils.getExternalAppMoviesPath()) |
| 81 | + .appendLine("getExternalAppDownloadPath: " + PathUtils.getExternalAppDownloadPath()) |
| 82 | + .appendLine("getExternalAppDcimPath: " + PathUtils.getExternalAppDcimPath()) |
| 83 | + .appendLine("getExternalAppDocumentsPath: " + PathUtils.getExternalAppDocumentsPath()) |
| 84 | + .appendLine("getExternalAppObbPath: " + PathUtils.getExternalAppObbPath()) |
46 | 85 | .append("")
|
47 | 86 | .create());
|
48 | 87 | }
|
|
0 commit comments