+
+ public void setPath(String path) {
+ if (getPathLayout() != null)
+ getPathLayout().addPath(path);
+ }
+
+ public String getCurrentPath() {
+ if (getPathLayout() != null)
+ return getPathLayout().getFullPath();
+ return "";
+ }
+
+ private PathLayout getPathLayout() {
+ return (PathLayout) getActivity().findViewById(R.id.pathLayout1);
+ }