Parcourir la source

set sub headline after local path has been chosen

AndyScherzinger il y a 7 ans
Parent
commit
78cdab05ac

+ 9 - 0
src/main/java/com/owncloud/android/ui/dialog/SyncedFolderPreferencesDialogFragment.java

@@ -50,6 +50,8 @@ import com.owncloud.android.ui.dialog.parcel.SyncedFolderParcelable;
 import com.owncloud.android.utils.DisplayUtils;
 import com.owncloud.android.utils.ThemeUtils;
 
+import java.io.File;
+
 /**
  * Dialog to show the preferences/configuration of a synced folder allowing the user to change the different parameters.
  */
@@ -229,6 +231,13 @@ public class SyncedFolderPreferencesDialogFragment extends DialogFragment {
     public void setLocalFolderSummary(String path) {
         mSyncedFolder.setLocalPath(path);
         mLocalFolderSummary.setText(path);
+        mLocalFolderPath.setText(
+                DisplayUtils.createTextWithSpan(
+                        String.format(
+                                getString(R.string.folder_sync_preferences_folder_path),
+                                mSyncedFolder.getLocalPath()),
+                        new File(mSyncedFolder.getLocalPath()).getName(),
+                        new StyleSpan(Typeface.BOLD)));
     }
 
     /**