mirror of
https://github.com/moparisthebest/android-app
synced 2024-11-15 05:15:04 -05:00
Change App Name
This commit is contained in:
parent
518e708b29
commit
6aab63fdc1
Binary file not shown.
BIN
bin/classes.dex
BIN
bin/classes.dex
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,9 +1,9 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="hello">Welcome to Android2Poche !</string>
|
<string name="hello">Welcome to Poche !</string>
|
||||||
<string name="app_name">Android2Poche</string>
|
<string name="app_name">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>Android2Poche</i>. \nYou could then see your Poche login page. \nAnd it\'s done !</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 !</string>
|
||||||
<string name="btnDone">Done</string>
|
<string name="btnDone">Done</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://links.gaulupeau.fr</string>
|
||||||
|
@ -51,15 +51,10 @@ 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");
|
||||||
String pageTitle = extras.getString("android.intent.extra.SUBJECT");
|
|
||||||
// Some apps do not provide the page title, so in this case use the URL again
|
|
||||||
if (pageTitle == null) {
|
|
||||||
pageTitle = pageUrl;
|
|
||||||
}
|
|
||||||
// Start to build the Delicious URL
|
// Start to build the Delicious URL
|
||||||
Uri.Builder deliciousSaveUrl = Uri.parse(pocheUrl).buildUpon();
|
Uri.Builder pocheSaveUrl = Uri.parse(pocheUrl).buildUpon();
|
||||||
// Add the parameters from the call
|
// Add the parameters from the call
|
||||||
deliciousSaveUrl.appendQueryParameter("action", "add");
|
pocheSaveUrl.appendQueryParameter("action", "add");
|
||||||
byte[] data = null;
|
byte[] data = null;
|
||||||
try {
|
try {
|
||||||
data = pageUrl.getBytes("UTF-8");
|
data = pageUrl.getBytes("UTF-8");
|
||||||
@ -69,16 +64,18 @@ import android.widget.TextView;
|
|||||||
}
|
}
|
||||||
String base64 = Base64.encodeToString(data, Base64.DEFAULT);
|
String base64 = Base64.encodeToString(data, Base64.DEFAULT);
|
||||||
System.out.println(base64);
|
System.out.println(base64);
|
||||||
deliciousSaveUrl.appendQueryParameter("url", base64);
|
pocheSaveUrl.appendQueryParameter("url", base64);
|
||||||
//System.out.println("base64 : " + base64);
|
//System.out.println("base64 : " + base64);
|
||||||
//System.out.println("pageurl : " + pageUrl);
|
//System.out.println("pageurl : " + pageUrl);
|
||||||
|
|
||||||
// Load the constructed URL in the browser
|
// Load the constructed URL in the browser
|
||||||
Intent i = new Intent(Intent.ACTION_VIEW);
|
Intent i = new Intent(Intent.ACTION_VIEW);
|
||||||
i.setData(deliciousSaveUrl.build());
|
i.setData(pocheSaveUrl.build());
|
||||||
// If user has more then one browser installed give them a chance to
|
// If user has more then one browser installed give them a chance to
|
||||||
// select which one they want to use
|
// select which one they want to use
|
||||||
startActivity(Intent.createChooser(i, getString(R.string.which_browser)));
|
|
||||||
|
//startActivity(Intent.createChooser(i, getString(R.string.which_browser)));
|
||||||
|
startActivity(i);
|
||||||
// That is all this app needs to do, so call finish()
|
// That is all this app needs to do, so call finish()
|
||||||
this.finish();
|
this.finish();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user