diff --git a/res/drawable/page0.png b/res/drawable/page0.png new file mode 100644 index 00000000..7450c258 Binary files /dev/null and b/res/drawable/page0.png differ diff --git a/res/drawable/page3_en.png b/res/drawable/page3_en.png new file mode 100644 index 00000000..835ee501 Binary files /dev/null and b/res/drawable/page3_en.png differ diff --git a/res/values/pages.xml b/res/values/pages.xml index e74f0244..b512ad19 100644 --- a/res/values/pages.xml +++ b/res/values/pages.xml @@ -1,17 +1,17 @@ Welcome! -
Welcome to Xash3D FWGS! Before continue, we recommend you to read our installation guide. Press "Next" to continue. Press "Skip" to close this dialog, if you already have installed the game data files.]]>
+ Welcome to Xash3D FWGS! Before continue, we recommend you to read our installation guide. Press "Next" to continue. Press "Skip" to close this dialog, if you already have installed the game data files. Purchase Half-Life in Steam -
To play, you need to have Half-Life on your Steam account. Install Steam client on your PC. Purchase the game, if you still not. Press "Install" button. Wait until download finishes.]]>
+ To play, you need to have Half-Life on your Steam account. Install Steam client on your PC. Purchase the game, if you still not. Press "Install" button. Wait until download finishes. Get game files directory -
Open game properties in Steam, move to "Local Files" tab and press "Browse local files..." button. File manager window will appear.]]>
+ Open game properties in Steam, move to "Local Files" tab and press "Browse local files..." button. File manager window will appear. Copy game files to device - + Connect your device to PC. Create "xash" folder in device\'s internal storage and copy "valve" folder from game local files into "xash" on your device. If you have not enough internal storage, you may use external SD. Then you need to use "Android/data/in.celest.xash3d.hl/files" folder on external SD(create these folders, if they does not exist). Setting game path - + After successfully copying game to device, you need to tell Xash3D FWGS where you placed it. Press "Next" to close this dialog and select game folder (that contains "valve" folder) by pressing "Select game data location" button
diff --git a/src/in/celest/xash3d/XashTutorialActivity.java b/src/in/celest/xash3d/XashTutorialActivity.java index fcd38cb1..246fea63 100644 --- a/src/in/celest/xash3d/XashTutorialActivity.java +++ b/src/in/celest/xash3d/XashTutorialActivity.java @@ -32,7 +32,7 @@ public class XashTutorialActivity extends TutorialActivity addFragment(new Step.Builder().setTitle(getString(R.string.page_title0)) .setContent(getString(R.string.page_content0)) .setBackgroundColor(Color.parseColor("#555555")) // int background color - .setDrawable(R.drawable.ic_launcher) // int top drawable + .setDrawable(R.drawable.page0) // int top drawable .build()); addFragment(new Step.Builder().setTitle(getString(R.string.page_title1)) @@ -48,7 +48,7 @@ public class XashTutorialActivity extends TutorialActivity addFragment(new Step.Builder().setTitle(getString(R.string.page_title3)) .setContent(getString(R.string.page_content3)) .setBackgroundColor(Color.parseColor("#555555")) // int background color - // .setDrawable(R.drawable.ic_launcher) // int top drawable + .setDrawable(R.drawable.page3_en) // int top drawable .build()); addFragment(new Step.Builder().setTitle(getString(R.string.page_title4)) .setContent(getString(R.string.page_content4))