Skip to content

Commit

Permalink
-ora dovrebbe realmente essere visibile dai tablet #59
Browse files Browse the repository at this point in the history
-cambiato colore testo in elenco attivita(ora e un po' piu scuro)
  • Loading branch information
ciopper90 committed May 15, 2014
1 parent d249a59 commit a255632
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="it.gaiacri.mobile"
android:versionCode="2"
android:versionCode="3"
android:versionName="@string/app_version" >

<uses-sdk
Expand All @@ -12,6 +12,7 @@
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.CALL_PHONE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-feature android:name="android.hardware.telephony" android:required="false" />
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
Expand Down Expand Up @@ -39,7 +40,6 @@
android:configChanges="orientation|keyboardHidden|screenSize" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
Expand Down
2 changes: 1 addition & 1 deletion res/values/string.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<resources>

<string name="app_name">Gaia Mobile</string>
<string name="app_version">1.0.1</string>
<string name="app_version">1.0.2</string>
<string name="menu_settings">Settings</string>
<string name="caricamento">Caricamento in corso</string>
<string name="menu_comunicazioni">Ultime 20 Comunicazioni:</string>
Expand Down
4 changes: 3 additions & 1 deletion src/it/gaiacri/mobile/ElencoAttivita.java
Original file line number Diff line number Diff line change
Expand Up @@ -233,9 +233,11 @@ public View getView(int position, View convertView, ViewGroup parent) {
//String col=a.get(position).getTurni().get(0).getColor();
//Log.d("Colore Elab:", col);
((TextView)row.findViewById(R.id.textViewList)).setTextColor(Color.parseColor(a.get(position).getColor()));
((TextView)row.findViewById(R.id.textViewListData)).setTextColor(Color.DKGRAY);
((TextView)row.findViewById(R.id.textViewListUrl)).setTextColor(Color.DKGRAY);

}
return row;

}
};

Expand Down

0 comments on commit a255632

Please sign in to comment.