Skip to content

Commit d667bbd

Browse files
committed
Added Action Mode for Multiple Files Selection
1 parent dbf7291 commit d667bbd

26 files changed

+593
-161
lines changed

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,6 @@ dependencies {
2626
compile 'com.android.support:design:25.3.1'
2727
compile 'com.android.support:recyclerview-v7:25.3.1'
2828
compile 'com.beardedhen:androidbootstrap:2.3.1'
29+
compile 'com.roughike:bottom-bar:2.3.1'
2930
compile files('libs/commons-io-2.5.jar')
3031
}

app/src/main/AndroidManifest.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@
33
package="com.aditya.filebrowser">
44

55
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
6-
<uses-permission android:name="android.permission.INTERNET" />
7-
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
8-
<uses-permission android:name="android.permission.CAMERA" />
9-
<uses-permission android:name="android.permission.READ_CONTACTS" />
106

117
<application
128
android:allowBackup="true"

app/src/main/java/com/aditya/filebrowser/Constants.java

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,17 @@
33
import android.Manifest;
44
import android.os.Environment;
55

6+
import java.io.File;
7+
68
/**
79
* Created by adik on 10/18/2015.
810
*/
911
public class Constants {
1012

1113
public static final String APP_PREMISSION_KEY = "APP_PERMISSIONS";
1214
public static final String [] APP_PREMISSIONS = {
13-
Manifest.permission.WRITE_EXTERNAL_STORAGE
14-
// ,Manifest.permission.INTERNET
15-
// ,Manifest.permission.ACCESS_NETWORK_STATE
16-
,Manifest.permission.READ_CONTACTS,
17-
Manifest.permission.CAMERA};
15+
Manifest.permission.WRITE_EXTERNAL_STORAGE};
16+
public static final File internalStorageRoot = Environment.getDataDirectory();
17+
public static final File externalStorageRoot = Environment.getExternalStorageDirectory();
18+
public static final String SHOW_FOLDER_SIZE = "false";
1819
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package com.aditya.filebrowser;
2+
3+
/**
4+
* Created by Aditya on 4/15/2017.
5+
*/
6+
public class FileIO {
7+
}

app/src/main/java/com/aditya/filebrowser/Filename.java

Lines changed: 0 additions & 36 deletions
This file was deleted.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package com.aditya.filebrowser.Interfaces;
2+
3+
/**
4+
* Created by Aditya on 4/15/2017.
5+
*/
6+
public interface ITrackSelection {
7+
boolean isSelected();
8+
void setSelected(boolean isSelected);
9+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package com.aditya.filebrowser.Interfaces;
2+
3+
/**
4+
* Created by Aditya on 4/15/2017.
5+
*/
6+
public interface UpdatableItem {
7+
void update();
8+
}

0 commit comments

Comments
 (0)