Créer un File Finder Dialog simple dans Android
1. Le but de l'exemple
Dans cet article, je vais vous guider pour créer une application simple, rechercher des fichiers dans Android et afficher les résultats sur un Dialog.
Cette application recherchera les fichiers sur la SD Card (carte SD), donc si vous testez cette application sur Android Emulator, vous devez configurer la SD Card pour elle.
Utilisez Device File Explorer pour copier certains fichiers dans Android Emulator, cela est nécessaire pour tester l'application.
2. Example de File Finder Dialog
Sur Android Studio, créez un nouveau project:
- File > New > New Project > Empty Activity
- Name: FileFinderDialogExample
- Package name: org.o7planning.filefinderdialogexample
- Language: Java
Une fois que l'utilisateur a cliqué sur le bouton de recherche, la liste des fichiers trouvés s'affiche sur un RecyclerView. Il s'agit d'un composant d'interface non disponible sur le Android SDK, vous devez donc l'installer dans le projet.
Après avoir installé la bibliothèque avec succès, vous la verrez déclarée dans build.gradle (Module App):
dependencies {
...
implementation 'androidx.recyclerview:recyclerview:1.0.0'
}
Ensuite, enregistrez-vous auprès du système afin que votre application soit autorisée à accéder aux fichiers.
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.o7planning.filefinderdialogexample">
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
L'interface de l'application:
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<EditText
android:id="@+id/editText_search"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginLeft="16dp"
android:layout_marginTop="32dp"
android:layout_marginEnd="16dp"
android:layout_marginRight="16dp"
android:ems="10"
android:hint="File Name"
android:inputType="textPersonName"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<CheckBox
android:id="@+id/checkBox_isRegex"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginLeft="16dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="16dp"
android:layout_marginRight="16dp"
android:text="Regex?"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/editText_search" />
<Button
android:id="@+id/button_search"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="24dp"
android:text="Search"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.498"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/checkBox_isRegex" />
</androidx.constraintlayout.widget.ConstraintLayout>
La classe FileFinder comprend des méthodes de recherche de fichiers dans le système. Remarque: Avec Android 6.0+ (API Level 23+), votre application doit demander à l'utilisateur la permission d'accéder aux fichiers, si elle n'est pas autorisée par l'utilisateur, ces méthodes renvoient toujours une liste creux.
FileFinder.java
package org.o7planning.filefinderdialogexample;
import android.os.Environment;
import android.util.Log;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import java.util.regex.Pattern;
public class FileFinder {
private static final String LOG_TAG_FILE_FINDER = "FileSelector";
private boolean enableLog;
public FileFinder(boolean enableLog) {
this.enableLog = enableLog;
}
public List<File> findByKeyword(File rootDir, String keywordFileName) {
if(keywordFileName==null || keywordFileName.isEmpty()) {
return new ArrayList<File>();
}
String regexFileName = keywordFileName.replace("*", ".*?");
List<File> resultList = this.listOfFile(rootDir, regexFileName);
return resultList;
}
public List<File> findByRegex(File rootDir, String regexFileName) {
List<File> resultList = this.listOfFile(rootDir, regexFileName);
return resultList;
}
public List<File> findInSDCardByKeyword(String keywordFileName) {
// (Example): /storage/emulated/0
String sdCardPath = Environment.getExternalStorageDirectory().getAbsolutePath();
this.log("External Storage Directory: " + sdCardPath);
File sdCardDir = new File(sdCardPath);
return this.findByKeyword(sdCardDir, keywordFileName);
}
public List<File> findInSDCardByRegex(String regexFileName) {
// (Example): /storage/emulated/0
String sdCardPath = Environment.getExternalStorageDirectory().getAbsolutePath();
this.log("External Storage Directory: " + sdCardPath);
File sdCardDir = new File(sdCardPath);
return this.findByRegex(sdCardDir, regexFileName);
}
private List<File> listOfFile(File dir, String regexFileName) {
Pattern patternFileName = Pattern.compile(regexFileName);
List<File> resultList = new ArrayList<File>();
this.listOfFile(dir, patternFileName, resultList);
return resultList;
}
private void listOfFile(File dir, Pattern patternFileName, List<File> resultList) {
this.log("LIST OF DIR " + dir.getAbsolutePath());
File[] list = dir.listFiles();
if(list == null) {
this.log("Directory" + dir.getAbsolutePath()+ " has no files");
return;
}
this.log("Directory" + dir.getAbsolutePath()+ " has " + list.length +" direct files");
for (File file : list) {
if (file.isDirectory()) {
if (!new File(file, ".nomedia").exists() && !file.getName().startsWith(".")) {
this.log( "IS DIR " + file);
listOfFile(file, patternFileName, resultList);
}
} else {
String path = file.getAbsolutePath();
this.log( "FILE PATH: " + path);
String fileName = file.getName();
if(patternFileName.matcher(fileName).find()) {
resultList.add(file);
this.log( "ADD " + path);
}
}
}
}
private void log(String message) {
if(enableLog) {
Log.i(LOG_TAG_FILE_FINDER, message);
}
}
}
OnFileSelectListener.java
package org.o7planning.filefinderdialogexample;
import java.io.File;
public interface OnFileSelectListener {
void onSelect(File file);
}
ResultDialog.java
package org.o7planning.filefinderdialogexample;
import android.app.Dialog;
import android.content.Context;
import android.graphics.Typeface;
import android.util.TypedValue;
import android.view.Gravity;
import android.view.View;
import android.view.ViewGroup;
import android.view.Window;
import android.widget.LinearLayout;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.RecyclerView;
import java.io.File;
import java.util.List;
public class ResultDialog extends Dialog {
public ResultDialog(@NonNull Context context, List<File> resultList, OnFileSelectListener listener) {
super(context);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
//
LinearLayout linearLayout = new LinearLayout(this.getContext());
linearLayout.setLayoutParams(new LinearLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT));
linearLayout.setOrientation(LinearLayout.VERTICAL);
int p = convertToPixels(12);
linearLayout.setPadding(p, p, p, p);
linearLayout.setGravity(Gravity.CENTER);
TextView textView = new TextView(this.getContext());
textView.setLayoutParams(new LinearLayout.LayoutParams(screenWidth(), ViewGroup.LayoutParams.WRAP_CONTENT));
textView.setGravity(Gravity.CENTER);
textView.setText("~ Search Result ~");
RecyclerView recyclerView = new RecyclerView(this.getContext());
linearLayout.addView(textView);
linearLayout.addView(recyclerView);
RecyclerViewAdapter adapter = new RecyclerViewAdapter(this.getContext(), this, listener, resultList);
recyclerView.setAdapter(adapter);
LinearLayoutManager layoutManager = new LinearLayoutManager(this.getContext());
layoutManager.setOrientation(LinearLayoutManager.VERTICAL);
recyclerView.setLayoutManager(layoutManager);
//
// this.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
//
this.setContentView(linearLayout);
this.setCancelable(true);
}
private int convertToPixels(int dp) {
float scale = this.getContext().getResources().getDisplayMetrics().density;
return (int) (dp * scale + 0.5f);
}
private int screenWidth() {
return this.getContext().getResources().getDisplayMetrics().widthPixels;
}
// RecyclerViewAdapter
private class RecyclerViewAdapter extends RecyclerView.Adapter<RecyclerViewAdapter.ViewHolder> {
private Context context;
private List<File> files;
private OnFileSelectListener listener;
private Dialog dialog;
public RecyclerViewAdapter(Context context, Dialog dialog, OnFileSelectListener listener, List<File> files) {
this.context = context;
this.files = files;
this.listener = listener;
this.dialog = dialog;
}
// Create new views (invoked by the layout manager)
@Override
public RecyclerViewAdapter.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
LinearLayout linearLayout = new LinearLayout(context);
linearLayout.setOrientation(LinearLayout.VERTICAL);
TextView txtName = new TextView(context);
TextView txtPath = new TextView(context);
txtPath.setTypeface(txtPath.getTypeface(), Typeface.ITALIC);
txtPath.setTextSize(TypedValue.COMPLEX_UNIT_SP, 11);
linearLayout.addView(txtName);
linearLayout.addView(txtPath);
RecyclerViewAdapter.ViewHolder viewHolder = new RecyclerViewAdapter.ViewHolder(linearLayout);
return viewHolder;
}
// Inner class to hold a reference to each item of RecyclerView
public class ViewHolder extends RecyclerView.ViewHolder {
public LinearLayout linearLayout;
public TextView textViewFileName;
public TextView textViewPath;
public ViewHolder(View itemLayoutView) {
super(itemLayoutView);
this.linearLayout = (LinearLayout) itemLayoutView;
this.textViewFileName = (TextView) linearLayout.getChildAt(0);
this.textViewPath = (TextView) linearLayout.getChildAt(1);
}
}
@Override
public int getItemCount() {
return files.size();
}
@Override
public void onBindViewHolder(RecyclerViewAdapter.ViewHolder viewHolder, final int position) {
final File selectedFile = files.get(position);
final String path = selectedFile.getAbsolutePath();
String[] split = path.split("/");
final String name = split[split.length - 1];
viewHolder.textViewFileName.setText(name);
viewHolder.textViewPath.setText(path);
viewHolder.linearLayout.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
dialog.dismiss();
listener.onSelect(selectedFile);
}
});
}
}
}
MainActivity.java
package org.o7planning.filefinderdialogexample;
import androidx.appcompat.app.AppCompatActivity;
import androidx.core.app.ActivityCompat;
import android.Manifest;
import android.content.pm.PackageManager;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.EditText;
import android.widget.Toast;
import java.io.File;
import java.util.List;
public class MainActivity extends AppCompatActivity {
private static final int MY_REQUEST_CODE_PERMISSION = 1000;
private static final String LOG_TAG = "AndroidExample";
private Button buttonSearch;
private EditText editTextSearch;
private CheckBox checkBoxIsRegex;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
this.editTextSearch = (EditText) this.findViewById(R.id.editText_search);
this.checkBoxIsRegex = (CheckBox) this.findViewById(R.id.checkBox_isRegex);
this.buttonSearch = (Button) this.findViewById(R.id.button_search);
this.buttonSearch.setOnClickListener(new View.OnClickListener(){
@Override
public void onClick(View v) {
askPermissionAndSearchFile();
}
});
}
private void askPermissionAndSearchFile() {
// With Android Level >= 23, you have to ask the user
// for permission to access External Storage.
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.M) { // Level 23
// Check if we have Call permission
int permisson = ActivityCompat.checkSelfPermission(this,
Manifest.permission.READ_EXTERNAL_STORAGE);
if (permisson != PackageManager.PERMISSION_GRANTED) {
// If don't have permission so prompt the user.
this.requestPermissions(
new String[]{Manifest.permission.READ_EXTERNAL_STORAGE},
MY_REQUEST_CODE_PERMISSION
);
return;
}
}
this.doSearchFile();
}
private void doSearchFile() {
FileFinder fileSelector = new FileFinder(true);
String searchText = this.editTextSearch.getText().toString();
boolean isRegex = this.checkBoxIsRegex.isChecked();
List<File> resultList = null;
if(isRegex) {
resultList = fileSelector.findInSDCardByRegex(searchText);
} else {
resultList = fileSelector.findInSDCardByKeyword(searchText);
}
ResultDialog dialog = new ResultDialog(this, resultList, new OnFileSelectListener() {
@Override
public void onSelect(File file) {
Toast.makeText(MainActivity.this, "Path: " + file.getAbsolutePath(), Toast.LENGTH_LONG).show();
}
});
dialog.show();
}
// When you have the request results
@Override
public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
//
switch (requestCode) {
case MY_REQUEST_CODE_PERMISSION: {
// Note: If request is cancelled, the result arrays are empty.
// Permissions granted (CALL_PHONE).
if (grantResults.length > 0
&& grantResults[0] == PackageManager.PERMISSION_GRANTED) {
Log.i( LOG_TAG,"Permission granted!");
Toast.makeText(this, "Permission granted!", Toast.LENGTH_SHORT).show();
this.doSearchFile();
}
// Cancelled or denied.
else {
Log.i(LOG_TAG,"Permission denied!");
Toast.makeText(this, "Permission denied!", Toast.LENGTH_SHORT).show();
}
break;
}
}
}
}
Tutoriels de programmation Android
- Configurer Android Emulator en Android Studio
- Le Tutoriel de Android ToggleButton
- Créer un File Finder Dialog simple dans Android
- Le Tutoriel de Android TimePickerDialog
- Le Tutoriel de Android DatePickerDialog
- De quoi avez-vous besoin pour démarrer avec Android?
- Installer Android Studio sur Windows
- Installer Intel® HAXM pour Android Studio
- Le Tutoriel de Android AsyncTask
- Le Tutoriel de Android AsyncTaskLoader
- Tutoriel Android pour débutant - Exemples de base
- Comment connaître le numéro de téléphone d'Android Emulator et le changer?
- Le Tutoriel de Android TextInputLayout
- Le Tutoriel de Android CardView
- Le Tutoriel de Android ViewPager2
- Obtenir un numéro de téléphone dans Android à l'aide de TelephonyManager
- Le Tutoriel de Android Phone Call
- Le Tutoriel de Android Wifi Scanning
- Le Tutoriel de programmation de jeux Android 2D pour débutant
- Le Tutoriel de Android DialogFragment
- Le Tutoriel de Android CharacterPickerDialog
- Le Tutoriel Android pour débutant - Hello Android
- Utiliser Android Device File Explorer
- Activer USB Debugging sur un appareil Android
- Le Tutoriel de Android UI Layouts
- Le Tutoriel de Android SMS
- Le Tutoriel de Android et SQLite Database
- Le Tutoriel de Google Maps Android API
- Le Tutoriel de texte pour parler dans Android
- Le Tutoriel de Android Space
- Le Tutoriel de Android Toast
- Créer un Android Toast personnalisé
- Le Tutoriel de Android SnackBar
- Le Tutoriel de Android TextView
- Le Tutoriel de Android TextClock
- Le Tutoriel de Android EditText
- Le Tutoriel de Android TextWatcher
- Formater le numéro de carte de crédit avec Android TextWatcher
- Le Tutoriel de Android Clipboard
- Créer un File Chooser simple dans Android
- Le Tutoriel de Android AutoCompleteTextView et MultiAutoCompleteTextView
- Le Tutoriel de Android ImageView
- Le Tutoriel de Android ImageSwitcher
- Le Tutoriel de Android ScrollView et HorizontalScrollView
- Le Tutoriel de Android WebView
- Le Tutoriel de Android SeekBar
- Le Tutoriel de Android Dialog
- Le Tutoriel de Android AlertDialog
- Tutoriel Android RatingBar
- Le Tutoriel de Android ProgressBar
- Le Tutoriel de Android Spinner
- Le Tutoriel de Android Button
- Le Tutoriel de Android Switch
- Le Tutoriel de Android ImageButton
- Le Tutoriel de Android FloatingActionButton
- Le Tutoriel de Android CheckBox
- Le Tutoriel de Android RadioGroup et RadioButton
- Le Tutoriel de Android Chip et ChipGroup
- Utilisation des Image assets et des Icon assets d'Android Studio
- Configuration de la Carte SD pour Android Emulator
- Exemple ChipGroup et Chip Entry
- Comment ajouter des bibliothèques externes à Android Project dans Android Studio?
- Comment désactiver les autorisations déjà accordées à l'application Android?
- Comment supprimer des applications de Android Emulator?
- Le Tutoriel de Android LinearLayout
- Le Tutoriel de Android TableLayout
- Le Tutoriel de Android FrameLayout
- Le Tutoriel de Android QuickContactBadge
- Le Tutoriel de Android StackView
- Le Tutoriel de Android Camera
- Le Tutoriel de Android MediaPlayer
- Le Tutoriel de Android VideoView
- Jouer des effets sonores dans Android avec SoundPool
- Le Tutoriel de Android Networking
- Analyser JSON dans Android
- Le Tutoriel de Android SharedPreferences
- Le Tutorial de stockage interne Android (Internal Storage)
- Le Tutoriel de Android External Storage
- Le Tutoriel de Android Intents
- Exemple d'une Android Intent explicite, appelant une autre Intent
- Exemple de Android Intent implicite, ouvrez une URL, envoyez un email
- Le Tutoriel de Android Service
- Le Tutoriel Android Notifications
- Le Tutoriel de Android DatePicker
- Le Tutoriel de Android TimePicker
- Le Tutoriel de Android Chronometer
- Le Tutoriel de Android OptionMenu
- Le Tutoriel de Android ContextMenu
- Le Tutoriel de Android PopupMenu
- Le Tutoriel de Android Fragment
- Le Tutoriel de Android ListView
- Android ListView avec Checkbox en utilisant ArrayAdapter
- Le Tutoriel de Android GridView
Show More