mirror of
https://github.com/nextcloud/android.git
synced 2024-11-22 21:25:35 +03:00
Use getFileNameText for nullable field
Signed-off-by: alperozturk <alper_ozturk@proton.me>
This commit is contained in:
parent
c48652de2e
commit
f84acd5331
1 changed files with 16 additions and 5 deletions
|
@ -56,7 +56,6 @@ import com.owncloud.android.utils.theme.ViewThemeUtils;
|
|||
import java.lang.ref.WeakReference;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Objects;
|
||||
import java.util.Set;
|
||||
|
||||
import javax.inject.Inject;
|
||||
|
@ -245,9 +244,20 @@ public class ChooseRichDocumentsTemplateDialogFragment extends DialogFragment im
|
|||
adapter.notifyDataSetChanged();
|
||||
}
|
||||
|
||||
private String getFileNameText() {
|
||||
String result = "";
|
||||
Editable text = binding.filename.getText();
|
||||
|
||||
if (text != null) {
|
||||
result = text.toString();
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
String name = binding.filename.getText().toString();
|
||||
String name = getFileNameText();
|
||||
String path = parentFolder.getRemotePath() + name;
|
||||
|
||||
Template selectedTemplate = adapter.getSelectedTemplate();
|
||||
|
@ -275,12 +285,13 @@ public class ChooseRichDocumentsTemplateDialogFragment extends DialogFragment im
|
|||
}
|
||||
|
||||
private void prefillFilenameIfEmpty(Template template) {
|
||||
String name = binding.filename.getText().toString();
|
||||
String name = getFileNameText();
|
||||
|
||||
if (name.isEmpty() || name.equalsIgnoreCase(DOT + template.getExtension())) {
|
||||
binding.filename.setText(String.format("%s.%s", template.getName(), template.getExtension()));
|
||||
}
|
||||
|
||||
final int dotIndex = binding.filename.getText().toString().lastIndexOf('.');
|
||||
final int dotIndex = getFileNameText().lastIndexOf('.');
|
||||
if (dotIndex >= 0) {
|
||||
binding.filename.setSelection(dotIndex);
|
||||
}
|
||||
|
@ -289,7 +300,7 @@ public class ChooseRichDocumentsTemplateDialogFragment extends DialogFragment im
|
|||
private void checkEnablingCreateButton() {
|
||||
if (positiveButton != null) {
|
||||
Template selectedTemplate = adapter.getSelectedTemplate();
|
||||
String name = Objects.requireNonNull(binding.filename.getText()).toString();
|
||||
String name = getFileNameText();
|
||||
boolean isNameJustExtension = selectedTemplate != null && name.equalsIgnoreCase(
|
||||
DOT + selectedTemplate.getExtension());
|
||||
boolean isNameEmpty = name.isEmpty() || isNameJustExtension;
|
||||
|
|
Loading…
Reference in a new issue