Skip to content

Commit

Permalink
Decreased card text size because not showing on some display resoluti…
Browse files Browse the repository at this point in the history
…ons (ex: 1280x720), version 1.8
  • Loading branch information
sergiopatricio committed Jul 1, 2013
1 parent 5dbfdb5 commit 93647c5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="pt.samp.scrumCards"
android:versionCode="8"
android:versionName="1.7" >
android:versionCode="9"
android:versionName="1.8" >

<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="14"/>

Expand All @@ -22,5 +22,4 @@
<activity android:name=".PreferencesActivity" />
<activity android:name=".ThemeActivity" />
</application>

</manifest>
Binary file added publish/ScrumCards.v1.8.apk
Binary file not shown.
4 changes: 2 additions & 2 deletions src/pt/samp/scrumCards/Cards.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ public final class Cards {
"?" };

// values based on tests with multiple screen resolutions
private static final float[] VERTICAL_FACTOR = new float[] { 1.8f, 3.5f, 1.8f, 1.8f, 1.8f, 1.8f, 1.8f, 2.5f, 2.5f,
2.5f, 3.5f, 1.8f };
private static final float[] VERTICAL_FACTOR = new float[] { 2.5f, 4f, 2.5f, 2.5f, 2.5f, 2.5f, 2.5f, 3f, 3f, 3f,
4f, 2.5f };
private static final float HORIZONTAL_FACTOR = 2.5f;

public static TextView createCardView(Context context, ViewGroup parent, int position) {
Expand Down

0 comments on commit 93647c5

Please sign in to comment.