HI Niffy,
Thanks for the info about HTC Desire S
The playguide just uses the normal android stuff. In the case of the text, it is using a n EditText view and a custom drawable to define the style (the custom drawable is called roundedShape.xml) so there are no assets needed:
Using xml Syntax Highlighting
<LinearLayout
android:id="@+id/linearLayout2"
android:layout_width="fill_parent"
android:layout_height="0px"
android:layout_weight="0.9"
android:orientation="vertical" >
<!-- Image -->
<RelativeLayout
android:id="@+id/linearLayout2"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_margin="5dp"
android:layout_weight=".6"
android:background="@drawable/roundedshape" >
<ImageView
android:id="@+id/levelDescription"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="5dp"
android:src="@drawable/playguide_image_placeholder" />
</RelativeLayout>
<!-- Description -->
<RelativeLayout
android:id="@+id/linearLayout2"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_margin="5dp"
android:layout_weight=".4" >
<EditText
android:id="@+id/levelDescription"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/roundedshape"
android:enabled="false"
android:padding="5dp"
android:scrollbars="vertical"
android:text="@string/playguidePage01"
android:textColor="@android:color/white"
android:textSize="11dp" />
</RelativeLayout>
</LinearLayout>
Parsed in 0.005 seconds, using
GeSHi 1.0.8.4
and then in @drawable/roundedshape.xml :
Using xml Syntax Highlighting
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<stroke android:width="1dp" android:color="#FFC28D3A" />
<solid android:color="#B0000000" />
<corners
android:bottomLeftRadius="7dp"
android:bottomRightRadius="7dp"
android:topLeftRadius="7dp"
android:topRightRadius="7dp" />
</shape>
Parsed in 0.002 seconds, using
GeSHi 1.0.8.4
@sjkm,
Thanks for checking again. I don't do any first time checks (and I don't use any databases within the game, I tend to use XML files for everything). I'll definitely be doing a big update in the next week or two to add some of these features that are cropping up like Backup to SD card and I may add a loading screen for the main menu.
-John