diff --git a/OsmAnd/res/layout/dashboard.xml b/OsmAnd/res/layout/dashboard.xml index 67384939e5..85845cc77d 100644 --- a/OsmAnd/res/layout/dashboard.xml +++ b/OsmAnd/res/layout/dashboard.xml @@ -38,7 +38,7 @@ android:textSize="20sp" /> - - + + diff --git a/OsmAnd/src/net/osmand/plus/activities/DashboardActivity.java b/OsmAnd/src/net/osmand/plus/activities/DashboardActivity.java index 9a9cc13640..92061d1fea 100644 --- a/OsmAnd/src/net/osmand/plus/activities/DashboardActivity.java +++ b/OsmAnd/src/net/osmand/plus/activities/DashboardActivity.java @@ -119,6 +119,10 @@ public class DashboardActivity extends BaseDownloadActivity { final String textVersion = "\u00A9 OsmAnd " + inst.get(Calendar.YEAR); textVersionView.setText(textVersion); final SharedPreferences prefs = getApplicationContext().getSharedPreferences("net.osmand.settings", MODE_WORLD_READABLE); + + //TODO: textversionview should be totally removed here as it has been moved to the About screen + textVersionView.setVisibility(View.GONE); + textVersionView.setOnClickListener(new OnClickListener(){ int i = 0;