Modifications mineures + changement de nom

This commit is contained in:
GAULUPEAU Jonathan 2013-10-28 15:03:26 +01:00
parent 907a1f407f
commit 10298fd172
8 changed files with 10 additions and 42 deletions

View File

@ -1,33 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Android2Poche</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="fr.gaulupeau.apps.Poche" package="fr.gaulupeau.apps.InThePoche"
android:versionCode="1" android:versionCode="1"
android:versionName="1.0"> android:versionName="1.0">
<uses-sdk android:minSdkVersion="4" <uses-sdk android:minSdkVersion="4"
@ -9,7 +9,7 @@
<application android:icon="@drawable/icon" android:label="@string/app_name"> <application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name="fr.gaulupeau.apps.Poche.Poche" <activity android:name="fr.gaulupeau.apps.Poche.Poche"
android:label="@string/app_name"> android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" /> <category android:name="android.intent.category.LAUNCHER" />

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 801 B

After

Width:  |  Height:  |  Size: 833 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<resources> <resources>
<string name="hello">Welcome to Poche !</string> <string name="hello">In the poche !</string>
<string name="app_name">Poche</string> <string name="app_name">In the poche</string>
<string name="author">By GAULUPEAU Jonathan</string> <string name="author">By GAULUPEAU Jonathan</string>
<string name="instructions">To save a web page to Poche, open the page in a browser then tap <i>Share</i> and tap on <i>Poche</i>. \nYou could then see your Poche login page. \nAnd it\'s done ! \nMore infos about Poche at http://www.inthepoche.com</string> <string name="instructions">To save a web page to poche, open the page in a browser then tap <i>Share</i> and tap on <i>In the poche</i>. \nYou could then see your Poche login page. \nAnd it\'s done ! \nMore infos about poche at http://www.inthepoche.com</string>
<string name="btnDone">Done</string> <string name="btnDone">Save</string>
<string name="which_browser">Which browser would you like to use?</string> <string name="which_browser">Which browser would you like to use?</string>
<string name="authorSite">http://links.gaulupeau.fr</string> <string name="authorSite">http://cv.gaulupeau.fr</string>
<string name="url_label"><b><u>Your Poche URL :</u></b></string> <string name="url_label"><b><u>Your poche URL :</u></b></string>
<string name="url_help">Examples:\n<i>http://poche.example.fr</i>\n<i>http://www.example.fr/poche</i></string> <string name="url_help">Examples:\n<i>http://poche.example.fr</i>\n<i>http://www.example.fr/poche</i></string>
</resources> </resources>

View File

@ -8,6 +8,7 @@
package fr.gaulupeau.apps.Poche; package fr.gaulupeau.apps.Poche;
import fr.gaulupeau.apps.InThePoche.R;
import java.io.UnsupportedEncodingException; import java.io.UnsupportedEncodingException;
import android.annotation.TargetApi; import android.annotation.TargetApi;
@ -52,7 +53,7 @@ import android.widget.TextView;
// ACTION_SEND is called when sharing, get the title and URL from // ACTION_SEND is called when sharing, get the title and URL from
// the call // the call
String pageUrl = extras.getString("android.intent.extra.TEXT"); String pageUrl = extras.getString("android.intent.extra.TEXT");
// Start to build the Delicious URL // Start to build the poche URL
Uri.Builder pocheSaveUrl = Uri.parse(pocheUrl).buildUpon(); Uri.Builder pocheSaveUrl = Uri.parse(pocheUrl).buildUpon();
// Add the parameters from the call // Add the parameters from the call
pocheSaveUrl.appendQueryParameter("action", "add"); pocheSaveUrl.appendQueryParameter("action", "add");