Revision: 877
http://swingme.svn.sourceforge.net/swingme/?rev=877&view=rev
Author: janeroski
Date: 2010-05-05 16:00:43 +0000 (Wed, 05 May 2010)
Log Message:
-----------
Theme: Add a "non background" theme
- Speed up the drawing, since we should always be full screen, and have no transparent bits
Modified Paths:
--------------
AndroidME/AndroidManifest.xml
Added Paths:
-----------
AndroidME/res/
AndroidME/res/drawable-hdpi/
AndroidME/res/drawable-hdpi/icon.png
AndroidME/res/drawable-ldpi/
AndroidME/res/drawable-ldpi/icon.png
AndroidME/res/drawable-mdpi/
AndroidME/res/drawable-mdpi/icon.png
AndroidME/res/layout/
AndroidME/res/layout/main.xml
AndroidME/res/values/
AndroidME/res/values/strings.xml
AndroidME/res/values/theme.xml
Modified: AndroidME/AndroidManifest.xml
===================================================================
--- AndroidME/AndroidManifest.xml 2010-05-05 15:14:10 UTC (rev 876)
+++ AndroidME/AndroidManifest.xml 2010-05-05 16:00:43 UTC (rev 877)
@@ -3,7 +3,7 @@
package="net.yura.android"
android:versionCode="1"
android:versionName="1.0">
- <application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar">
+ <application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@style/Theme.NoBackground">
<activity android:name=".AndroidMeMIDlet"
android:label="@string/app_name"
android:windowSoftInputMode="adjustResize"
Added: AndroidME/res/drawable-hdpi/icon.png
===================================================================
(Binary files differ)
Property changes on: AndroidME/res/drawable-hdpi/icon.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: AndroidME/res/drawable-ldpi/icon.png
===================================================================
(Binary files differ)
Property changes on: AndroidME/res/drawable-ldpi/icon.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: AndroidME/res/drawable-mdpi/icon.png
===================================================================
(Binary files differ)
Property changes on: AndroidME/res/drawable-mdpi/icon.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: AndroidME/res/layout/main.xml
===================================================================
--- AndroidME/res/layout/main.xml (rev 0)
+++ AndroidME/res/layout/main.xml 2010-05-05 16:00:43 UTC (rev 877)
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:background="#000000"
+ android:cacheColorHint="#000000"
+ >
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/please_wait"
+ />
+</LinearLayout>
Added: AndroidME/res/values/strings.xml
===================================================================
--- AndroidME/res/values/strings.xml (rev 0)
+++ AndroidME/res/values/strings.xml 2010-05-05 16:00:43 UTC (rev 877)
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <string name="please_wait">Please Wait...</string>
+ <string name="app_name">Badoo</string>
+</resources>
Added: AndroidME/res/values/theme.xml
===================================================================
--- AndroidME/res/values/theme.xml (rev 0)
+++ AndroidME/res/values/theme.xml 2010-05-05 16:00:43 UTC (rev 877)
@@ -0,0 +1,6 @@
+<resources>
+ <style name="Theme.NoBackground" parent="android:Theme">
+ <item name="android:windowBackground">@null</item>
+ <item name="android:windowNoTitle">true</item>
+ </style>
+</resources>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|