use of com.simplecity.amp_library.ui.views.CustomEditText in project Shuttle by timusus.
the class PlaylistUtils method renamePlaylistDialog.
public static void renamePlaylistDialog(final Context context, final Playlist playlist, final MaterialDialog.SingleButtonCallback listener) {
View customView = LayoutInflater.from(context).inflate(R.layout.dialog_playlist, null);
final CustomEditText editText = (CustomEditText) customView.findViewById(R.id.editText);
editText.setText(playlist.name);
MaterialDialog.Builder builder = DialogUtils.getBuilder(context).title(R.string.create_playlist_create_text_prompt).customView(customView, false).positiveText(R.string.save).onPositive((materialDialog, dialogAction) -> {
String name = editText.getText().toString();
if (name.length() > 0) {
ContentResolver resolver = context.getContentResolver();
ContentValues values = new ContentValues(1);
values.put(MediaStore.Audio.Playlists.NAME, name);
resolver.update(MediaStore.Audio.Playlists.EXTERNAL_CONTENT_URI, values, MediaStore.Audio.Playlists._ID + "=?", new String[] { Long.valueOf(playlist.id).toString() });
playlist.name = name;
Toast.makeText(context, R.string.playlist_renamed_message, Toast.LENGTH_SHORT).show();
}
if (listener != null) {
listener.onClick(materialDialog, dialogAction);
}
}).negativeText(R.string.cancel);
final MaterialDialog dialog = builder.build();
TextWatcher textWatcher = new TextWatcher() {
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
public void onTextChanged(CharSequence s, int start, int before, int count) {
// check if playlist with current name exists already, and warn the user if so.
setSaveButton(dialog, playlist, editText.getText().toString());
}
public void afterTextChanged(Editable s) {
}
};
editText.addTextChangedListener(textWatcher);
dialog.show();
}
use of com.simplecity.amp_library.ui.views.CustomEditText in project Shuttle by timusus.
the class FolderFragment method onOverflowClick.
@Override
public void onOverflowClick(View v, int position, BaseFileObject fileObject) {
PopupMenu menu = new PopupMenu(getActivity(), v);
if (fileObject.fileType == FileType.FILE) {
//Play this song next
menu.getMenu().add(FRAGMENT_GROUPID, PLAY_NEXT, 4, R.string.play_next);
//Tag editor
if (ShuttleUtils.isUpgraded()) {
menu.getMenu().add(FRAGMENT_GROUPID, TAGGER, 5, R.string.edit_tags);
}
//Set this song as the ringtone
menu.getMenu().add(FRAGMENT_GROUPID, USE_AS_RINGTONE, 6, R.string.ringtone_menu);
if (FileHelper.canReadWrite(new File(fileObject.path))) {
//Rename File
menu.getMenu().add(FRAGMENT_GROUPID, RENAME, 7, R.string.rename_file);
//Delete File
menu.getMenu().add(FRAGMENT_GROUPID, DELETE_ITEM, 8, R.string.delete_item);
}
menu.getMenu().add(FRAGMENT_GROUPID, VIEW_INFO, 9, R.string.song_info);
} else {
//Play all files in this dir
menu.getMenu().add(FRAGMENT_GROUPID, PLAY_SELECTION, 0, R.string.play_selection);
//Set this directory as initial directory
menu.getMenu().add(FRAGMENT_GROUPID, SET_INITIAL_DIR, 4, R.string.set_initial_dir);
if (FileHelper.canReadWrite(new File(fileObject.path))) {
//Rename dir
menu.getMenu().add(FRAGMENT_GROUPID, RENAME, 5, R.string.rename_folder);
//Delete dir
menu.getMenu().add(FRAGMENT_GROUPID, DELETE_ITEM, 6, R.string.delete_item);
}
}
//Bring up the add to playlist menu
SubMenu sub = menu.getMenu().addSubMenu(FRAGMENT_GROUPID, ADD_TO_PLAYLIST, 2, R.string.add_to_playlist);
PlaylistUtils.makePlaylistMenu(getActivity(), sub, FRAGMENT_GROUPID);
//Add to queue
menu.getMenu().add(FRAGMENT_GROUPID, QUEUE, 3, R.string.add_to_queue);
menu.getMenu().add(FRAGMENT_GROUPID, RESCAN, 4, R.string.scan_file);
menu.setOnMenuItemClickListener(item -> {
switch(item.getItemId()) {
case TAGGER:
FileHelper.getSong(new File(fileObject.path)).subscribeOn(Schedulers.io()).subscribe(song -> TaggerDialog.newInstance(song).show(getFragmentManager()));
return true;
case QUEUE:
FileHelper.getSongList(new File(fileObject.path), true, false).observeOn(AndroidSchedulers.mainThread()).subscribe(songs -> MusicUtils.addToQueue(getActivity(), songs));
return true;
case DELETE_ITEM:
MaterialDialog.Builder builder = DialogUtils.getBuilder(getActivity()).title(R.string.delete_item).icon(DrawableUtils.getBlackDrawable(getActivity(), R.drawable.ic_dialog_alert));
if (fileObject.fileType == FileType.FILE) {
builder.content(String.format(getResources().getString(R.string.delete_file_confirmation_dialog), fileObject.name));
} else {
builder.content(String.format(getResources().getString(R.string.delete_folder_confirmation_dialog), fileObject.path));
}
builder.positiveText(R.string.button_ok).onPositive((materialDialog, dialogAction) -> {
if (FileHelper.deleteFile(new File(fileObject.path))) {
mAdapter.removeItem(position);
CustomMediaScanner.scanFiles(Collections.singletonList(fileObject.path), null);
} else {
Toast.makeText(getActivity(), fileObject.fileType == FileType.FOLDER ? R.string.delete_folder_failed : R.string.delete_file_failed, Toast.LENGTH_LONG).show();
}
});
builder.negativeText(R.string.cancel).show();
return true;
case RENAME:
View customView = LayoutInflater.from(getContext()).inflate(R.layout.dialog_rename, null);
final CustomEditText editText = (CustomEditText) customView.findViewById(R.id.editText);
ThemeUtils.themeEditText(editText);
editText.setText(fileObject.name);
builder = DialogUtils.getBuilder(getActivity());
if (fileObject.fileType == FileType.FILE) {
builder.title(R.string.rename_file);
} else {
builder.title(R.string.rename_folder);
}
builder.customView(customView, false);
builder.positiveText(R.string.save).onPositive((materialDialog, dialogAction) -> {
if (editText.getText() != null) {
if (FileHelper.renameFile(getActivity(), fileObject, editText.getText().toString())) {
mAdapter.notifyDataSetChanged();
} else {
Toast.makeText(getActivity(), fileObject.fileType == FileType.FOLDER ? R.string.rename_folder_failed : R.string.rename_file_failed, Toast.LENGTH_LONG).show();
}
}
});
builder.negativeText(R.string.cancel).show();
return true;
case USE_AS_RINGTONE:
FileHelper.getSong(new File(fileObject.path)).subscribeOn(Schedulers.io()).observeOn(AndroidSchedulers.mainThread()).subscribe(song -> ShuttleUtils.setRingtone(getContext(), song));
return true;
case PLAY_NEXT:
FileHelper.getSongList(new File(fileObject.path), false, false).observeOn(AndroidSchedulers.mainThread()).subscribe(songs -> MusicUtils.playNext(getActivity(), songs));
return true;
case PLAY_SELECTION:
final ProgressDialog progressDialog = ProgressDialog.show(getActivity(), "", getString(R.string.gathering_songs), false);
FileHelper.getSongList(new File(fileObject.path), true, fileObject.fileType == FileType.FILE).observeOn(AndroidSchedulers.mainThread()).subscribe(songs -> {
MusicUtils.playAll(songs, 0, () -> {
final String message = getContext().getString(R.string.emptyplaylist);
Toast.makeText(getContext(), message, Toast.LENGTH_SHORT).show();
});
if (isAdded() && progressDialog.isShowing()) {
progressDialog.dismiss();
}
});
return true;
case NEW_PLAYLIST:
List<BaseFileObject> fileObjects = new ArrayList<>();
fileObjects.add(fileObject);
PlaylistUtils.createFileObjectPlaylistDialog(getActivity(), fileObjects);
return true;
case PLAYLIST_SELECTED:
final Playlist playlist = (Playlist) item.getIntent().getSerializableExtra(ShuttleUtils.ARG_PLAYLIST);
FileHelper.getSongList(new File(fileObject.path), true, false).observeOn(AndroidSchedulers.mainThread()).subscribe(songs -> PlaylistUtils.addToPlaylist(getContext(), playlist, songs));
return true;
case SET_INITIAL_DIR:
SettingsManager.getInstance().setFolderBrowserInitialDir(fileObject.path);
Toast.makeText(getActivity(), fileObject.path + getResources().getString(R.string.initial_dir_set_message), Toast.LENGTH_SHORT).show();
return true;
case RESCAN:
if (fileObject instanceof FolderObject) {
View view = LayoutInflater.from(getContext()).inflate(R.layout.dialog_progress, null);
TextView pathsTextView = (TextView) view.findViewById(R.id.paths);
pathsTextView.setText(fileObject.path);
ProgressBar indeterminateProgress = (ProgressBar) view.findViewById(R.id.indeterminateProgress);
DrawableCompat.setTint(DrawableCompat.wrap(indeterminateProgress.getIndeterminateDrawable()), ColorUtils.getAccentColor());
ProgressBar horizontalProgress = (ProgressBar) view.findViewById(R.id.horizontalProgress);
DrawableCompat.setTint(DrawableCompat.wrap(horizontalProgress.getProgressDrawable()), ColorUtils.getAccentColor());
MaterialDialog dialog = DialogUtils.getBuilder(getContext()).title(R.string.scanning).customView(view, false).negativeText(R.string.close).show();
FileHelper.getSongList(new File(fileObject.path), true, false).map(songs -> Stream.of(songs).map(song -> song.path).collect(Collectors.toList())).observeOn(AndroidSchedulers.mainThread()).subscribe(paths -> {
ViewUtils.fadeOut(indeterminateProgress, null);
ViewUtils.fadeIn(horizontalProgress, null);
horizontalProgress.setMax(paths.size());
CustomMediaScanner.scanFiles(paths, new CustomMediaScanner.ScanCompletionListener() {
@Override
public void onPathScanned(String path) {
horizontalProgress.setProgress(horizontalProgress.getProgress() + 1);
pathsTextView.setText(path);
}
@Override
public void onScanCompleted() {
if (isAdded() && dialog.isShowing()) {
dialog.dismiss();
}
}
});
});
} else {
CustomMediaScanner.scanFiles(Collections.singletonList(fileObject.path), new CustomMediaScanner.ScanCompletionListener() {
@Override
public void onPathScanned(String path) {
}
@Override
public void onScanCompleted() {
Toast.makeText(getContext(), R.string.scan_complete, Toast.LENGTH_LONG).show();
}
});
}
return true;
case VIEW_INFO:
DialogUtils.showFileInfoDialog(getActivity(), (FileObject) fileObject);
break;
}
return false;
});
menu.show();
}
Aggregations