Added region name in Updates tab in DownloadActivity
This commit is contained in:
parent
e62041ed67
commit
a1e77212a7
3 changed files with 22 additions and 3 deletions
|
@ -18,6 +18,7 @@ import com.actionbarsherlock.app.SherlockFragmentActivity;
|
|||
import com.actionbarsherlock.view.Window;
|
||||
import net.osmand.IndexConstants;
|
||||
import net.osmand.access.AccessibleAlertBuilder;
|
||||
import net.osmand.map.OsmandRegions;
|
||||
import net.osmand.plus.*;
|
||||
import net.osmand.plus.activities.FavouritesActivity;
|
||||
import net.osmand.plus.activities.LocalIndexInfo;
|
||||
|
@ -596,4 +597,20 @@ public class DownloadActivity extends SherlockFragmentActivity {
|
|||
}
|
||||
}
|
||||
|
||||
public static String getFullName(IndexItem e, OsmandApplication app, OsmandRegions osmandRegions) {
|
||||
String eName;
|
||||
List<IndexItem> forCat = new ArrayList<IndexItem>();
|
||||
forCat.add(e);
|
||||
List<IndexItemCategory> category = IndexItemCategory.categorizeIndexItems(app, forCat);
|
||||
if (category.size() != 0){
|
||||
eName = e.getVisibleDescription(app) + "\n"
|
||||
+ category.get(0).name + " "
|
||||
+ e.getVisibleName(app, osmandRegions);
|
||||
} else {
|
||||
eName = e.getVisibleDescription(app) + "\n"
|
||||
+ e.getVisibleName(app, osmandRegions);
|
||||
}
|
||||
return eName;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -961,8 +961,9 @@ public class LocalIndexesFragment extends OsmandExpandableListFragment {
|
|||
|
||||
private String getNameToDisplay(LocalIndexInfo child) {
|
||||
String mapDescr = getMapDescription(child.getFileName());
|
||||
String mapName = FileNameTranslationHelper.getFileName(ctx, ((OsmandApplication) getDownloadActivity().getApplication()).getResourceManager().getOsmandRegions(), child.getFileName());
|
||||
|
||||
String mapName = FileNameTranslationHelper.getFileName(ctx,
|
||||
((OsmandApplication) getDownloadActivity().getApplication()).getResourceManager().getOsmandRegions(),
|
||||
child.getFileName());
|
||||
if (mapDescr.length() > 0){
|
||||
return mapDescr + " - " + mapName;
|
||||
} else {
|
||||
|
|
|
@ -202,7 +202,8 @@ public class UpdatesIndexFragment extends SherlockListFragment {
|
|||
TextView name = (TextView) v.findViewById(R.id.download_item);
|
||||
TextView description = (TextView) v.findViewById(R.id.download_descr);
|
||||
IndexItem e = items.get(position);
|
||||
String eName = e.getVisibleDescription(getMyApplication()) + "\n" + e.getVisibleName(getMyApplication(), osmandRegions);
|
||||
String eName = DownloadActivity.getFullName(e, getMyApplication(), osmandRegions);
|
||||
|
||||
name.setText(eName.trim()); //$NON-NLS-1$
|
||||
String d = e.getDate(format) + "\n" + e.getSizeDescription(getMyApplication());
|
||||
description.setText(d);
|
||||
|
|
Loading…
Reference in a new issue