Add support for all android screen sizes.

This commit is contained in:
Brian Pellin
2009-10-18 20:00:00 -05:00
parent 28c9bfb373
commit ce122173e5
3 changed files with 11 additions and 5 deletions

View File

@@ -2,7 +2,13 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.keepass"
android:versionName="0.9.1" android:versionCode="21">
<uses-sdk android:minSdkVersion="3"/>
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4"/>
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="true"
/>
<application android:label="@string/app_name" android:icon="@drawable/keepassdroid_launcher">
<activity android:name=".KeePass"
android:label="@string/app_name">

View File

@@ -8,7 +8,7 @@
# project structure.
# Project target.
target=android-3
target=android-4
# apk configurations. This property allows creation of APK files with limited
# resources. For example, if your application contains many locales and
# you wish to release multiple smaller apks instead of a large one, you can

View File

@@ -24,7 +24,7 @@
</style>
<style name="GroupTextLarge" parent="android:Theme">
<item name="@android:textColor">@color/group</item>
<item name="@android:textSize">30sp</item>
<item name="@android:textSize">28sp</item>
</style>
<style name="ElementText">
<item name="@android:textSize">20sp</item>
@@ -33,8 +33,8 @@
<item name="@android:textColor">@color/group</item>
</style>
<style name="ElementTextLarge">
<item name="@android:textSize">30sp</item>
</style>
<item name="@android:textSize">28sp</item>
</style>
<style name="GroupLabel">
<item name="@android:textSize">20sp</item>
</style>