How to link to Market app? - Android Software Development

In an app I'm making I want to put a link saying "if you like this app please review it," and when the person clicks it it should open up the Market app to the page for my app. Can someone tell me how to do this? thanks.

In the method of your activity that handles the clicking of your "if you like this..." link,
you'll have to make an Intent object and use the startActivity() method like this:
Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=com.package.app"));
startActivity(i);
You'll have to put in the market link for your app in the Uri.parse() method.

Related

WSJ app

can anyone download this app and post here please for 8525?
http://online.wsj.com/public/page/mobile_download.html
hjlow said:
can anyone download this app and post here please for 8525?
http://online.wsj.com/public/page/mobile_download.html
Click to expand...
Click to collapse
"Enter your mobile number below and we'll send you a text message* with a link to get you started."
Just do what the page says??
that did not work for me, hence the request here
i tried but it did not work for me
tried
i tried but it did not work for me, hence the request here
also want WSJ android tablet app
hello, I am using Nook Color to load apk files. I do not have access to Android market and wanted to get the WSJ Android Tablet app as well. can someone post the APK file for it? Thanks very much.

Intent to start samsung calculator in jellybean

Hi all,
I was working on an custom launcher app tha blocks certain functions and allow certain functions depending on the user who logged in. The app is working fine.but i have a problem now.i used to test app with emulators and my office phone running vanilla android.when i tested it on a samsung device due to the change in package name of default calculator in samsung phones, the app crashes. Could someone give me an code snippet to start the default calculator app in samsung devices running jb or ics??
Sent from my GT-S5360 using xda app-developers app
jaison thomas said:
Hi all,
I was working on an custom launcher app tha blocks certain functions and allow certain functions depending on the user who logged in. The app is working fine.but i have a problem now.i used to test app with emulators and my office phone running vanilla android.when i tested it on a samsung device due to the change in package name of default calculator in samsung phones, the app crashes. Could someone give me an code snippet to start the default calculator app in samsung devices running jb or ics??
Sent from my GT-S5360 using xda app-developers app
Click to expand...
Click to collapse
Why don't you get the application list programmatically and search it for something like "calc" or "calculator"?
jaison thomas said:
Hi all,
I was working on an custom launcher app tha blocks certain functions and allow certain functions depending on the user who logged in. The app is working fine.but i have a problem now.i used to test app with emulators and my office phone running vanilla android.when i tested it on a samsung device due to the change in package name of default calculator in samsung phones, the app crashes. Could someone give me an code snippet to start the default calculator app in samsung devices running jb or ics??
Sent from my GT-S5360 using xda app-developers app
Click to expand...
Click to collapse
Code:
Intent mIntent = getPackageManager().getLaunchIntentForPackage(
"[COLOR="Teal"]com.whatever.the.samsung.calc.package.is[/COLOR]");
startActivity(mIntent);
Replace the code in blue with the samsung calculator package name.
And if you want to launch it with a nice animation on jb :
Code:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
Bundle b = null;
Bitmap bitmap = Bitmap.createBitmap(getWidth(),
getHeight(), Bitmap.Config.ARGB_8888);
b = ActivityOptions.makeThumbnailScaleUpAnimation(this, bitmap, 0, 0).toBundle();
startActivity(mIntent, b);
} else
startActivity(mIntent);
nikwen said:
Why don't you get the application list programmatically and search it for something like "calc" or "calculator"?
Click to expand...
Click to collapse
Actually thats a small project for a small group.i dont want it to be complicated for them
but its better to do as u said
Androguide.fr said:
Code:
Intent mIntent = getPackageManager().getLaunchIntentForPackage(
"[COLOR="Teal"]com.whatever.the.samsung.calc.package.is[/COLOR]");
startActivity(mIntent);
Replace the code in blue with the samsung calculator package name.
Click to expand...
Click to collapse
Actually what i want is the samsung calculator package name.
Thax for your help guys .
Sent from my GT-S5360 using xda app-developers app
Androguide.fr said:
Code:
Intent mIntent = getPackageManager().getLaunchIntentForPackage(
"[COLOR="Teal"]com.whatever.the.samsung.calc.package.is[/COLOR]");
startActivity(mIntent);
Replace the code in blue with the samsung calculator package name.
And if you want to launch it with a nice animation on jb :
Code:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
Bundle b = null;
Bitmap bitmap = Bitmap.createBitmap(getWidth(),
getHeight(), Bitmap.Config.ARGB_8888);
b = ActivityOptions.makeThumbnailScaleUpAnimation(this, bitmap, 0, 0).toBundle();
startActivity(mIntent, b);
} else
startActivity(mIntent);
Click to expand...
Click to collapse
On Gingerbread it was com.android.calculator
jaison thomas said:
Actually thats a small project for a small group.i dont want it to be complicated for them
but its better to do as u said
Actually what i want is the samsung calculator package name.
Thax for your help guys .
Sent from my GT-S5360 using xda app-developers app
Click to expand...
Click to collapse
Just type this in terminal on your samsung device :
Code:
pm list packages -f > /sdcard/packages.txt
grep calc /sdcard/packages.txt
It will return all package names that contain "calc"

[Q] Using one app as a service to other apps

I have been combing the developer.android site for a specific way to implement an app i'm trying to flesh out. The answer to this question will hopefully point me in the right direction.
I am trying to design an app that is basically a slave to whatever messaging apk the user wishes to download. Example: Handcent lets you use it's ringtone picker for almost every app that has notifications, even though it is a separate app for messaging in and of itself. What is the terminology for how this was coded for Android? I want to do something similar but i have no idea of where to look to find making my app the service for the function on the device

Android databases technology

I am app developer and i plan to do application, which uses online database (on server), and i would like to ask, what are the most common used technologies(i mean which SQL databases). Im in touch with MySQL but think it isnt the best solution available. So what is your favourite way to connect your app with database?
//Do you know any good literature with this topic?
JohnDeere1334 said:
I am app developer and i plan to do application, which uses online database (on server), and i would like to ask, what are the most common used technologies(i mean which SQL databases). Im in touch with MySQL but think it isnt the best solution available. So what is your favourite way to connect your app with database?
//Do you know any good literature with this topic?
Click to expand...
Click to collapse
I think you should use GoogleAppEngine it shall simpify things if you dont plan for BIG DATA
Sent from my GT-S5302 using Tapatalk 2
It depends of how much data you plan to store and how many users you plan to have
It depends on connections
JohnDeere1334 said:
I am app developer and i plan to do application, which uses online database (on server), and i would like to ask, what are the most common used technologies(i mean which SQL databases). Im in touch with MySQL but think it isnt the best solution available. So what is your favourite way to connect your app with database?
//Do you know any good literature with this topic?
Click to expand...
Click to collapse
Pool of connections are preferable when your app uses many connections . It's already realized in Java and you may easily use it.
http://forum.xda-developers.com/showthread.php?t=2325799
Sent from my GT-S5570 using XDA Premium 4 mobile app
arpitkh96 said:
http://forum.xda-developers.com/showthread.php?t=2325799
Sent from my GT-S5570 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
That is an extremely limited guide that means a working internet connection has to be present for the app to work on all launches of the app.
A more efficient way of doing it is to put the JSON output into a local SQLite database, therefore effectively mirroring the online one and then make the app read (and write if needed) information from the local database - if you need changes to be written to the local database you would then need to add a post method that parses the local DB to JSON and sends it to the server for the server to update its version of the DB.
This way takes a little more coding but means that you can use the app offline.
Sent from my HTCSensation using Tapatalk
Jonny said:
That is an extremely limited guide that means a working internet connection has to be present for the app to work on all launches of the app.
A more efficient way of doing it is to put the JSON output into a local SQLite database, therefore effectively mirroring the online one and then make the app read (and write if needed) information from the local database - if you need changes to be written to the local database you would then need to add a post method that parses the local DB to JSON and sends it to the server for the server to update its version of the DB.
This way takes a little more coding but means that you can use the app offline.
Sent from my HTCSensation using Tapatalk
Click to expand...
Click to collapse
Depends on the op.wouldnt it be better if app simply downloads the database and use it(if he is only reading it).
Sent from my GT-S5570 using XDA Premium 4 mobile app
arpitkh96 said:
Depends on the op.wouldnt it be better if app simply downloads the database and use it(if he is only reading it).
Sent from my GT-S5570 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
If he could be sure his users would have a constant network connection then maybe, however, my method allows for offline viewing and more control over when the app connects to the internet if its tied into a refresh button for example.
Sent from my HTCSensation using Tapatalk
Jonny said:
If he could be sure his users would have a constant network connection then maybe, however, my method allows for offline viewing and more control over when the app connects to the internet if its tied into a refresh button for example.
Sent from my HTCSensation using Tapatalk
Click to expand...
Click to collapse
Little offtopic
Like if i want to open pdf from a file i use this
Code:
public void openpdf(File f){
if(f.exists()) {
Uri path =Uri.fromFile(f);
Intent intent =new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path,"application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
try {startActivity(intent);}
catch (ActivityNotFoundException e) {
Toast.makeText(MainActivity.this,"No Application Available to View PDF",Toast.LENGTH_SHORT).show();
}}}
What should i use to open archive files(zip,rar) (from intent).i have tried general method of getting Mime type but that didnt worked
Sent from my GT-S5570 using XDA Premium 4 mobile app
arpitkh96 said:
Little offtopic
Like if i want to open pdf from a file i use this
Code:
public void openpdf(File f){
if(f.exists()) {
Uri path =Uri.fromFile(f);
Intent intent =new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path,"application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
try {startActivity(intent);}
catch (ActivityNotFoundException e) {
Toast.makeText(MainActivity.this,"No Application Available to View PDF",Toast.LENGTH_SHORT).show();
}}}
What should i use to open archive files(zip,rar) (from intent).i have tried general method of getting Mime type but that didnt worked
Sent from my GT-S5570 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
if you wanted to open it from within the application you could do something like:
Code:
ZipFile z = new ZipFile("/mtn/sdcard/download/teste.zip");
But if you wanted the intent to launch into a different app to handle the zip (eg Archidroid etc) then have you tried something like:
Code:
File file = new File("mnt/sdcard/download/test.zip");
Intent i = new Intent();
i.setAction(android.content.Intent.ACTION_VIEW);
i.setDataAndType(Uri.fromFile(file), "application/zip");
try {
startActivity(i);
} catch (ActivityNotFoundException e) {
Toast.makeText(MainActivity.this,"No Application Available to View Zip files",Toast.LENGTH_SHORT).show();
}
Jonny said:
if you wanted to open it from within the application you could do something like:
Code:
ZipFile z = new ZipFile("/mtn/sdcard/download/teste.zip");
But if you wanted the intent to launch into a different app to handle the zip (eg Archidroid etc) then have you tried something like:
Code:
File file = new File("mnt/sdcard/download/test.zip");
Intent i = new Intent();
i.setAction(android.content.Intent.ACTION_VIEW);
i.setDataAndType(Uri.fromFile(file), "application/zip");
try {
startActivity(i);
} catch (ActivityNotFoundException e) {
Toast.makeText(MainActivity.this,"No Application Available to View Zip files",Toast.LENGTH_SHORT).show();
}
Click to expand...
Click to collapse
Thanks.
One more.l am asking about the method i suggested of downloading the database for readonly purpose.where should i upload the database so that server could handle multiple downloads etc.
Sent from my GT-S5570 using XDA Premium 4 mobile app
arpitkh96 said:
Thanks.
One more.l am asking about the method i suggested of downloading the database for readonly purpose.where should i upload the database so that server could handle multiple downloads etc.
Sent from my GT-S5570 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
I'd have thought just having the database on the server and using the php script to output a JSON response then put the JSON response into a local SQLite database would do that.... I'm not entirely sure what you're asking though
Jonny said:
I'd have thought just having the database on the server and using the php script to output a JSON response then put the JSON response into a local SQLite database would do that.... I'm not entirely sure what you're asking though
Click to expand...
Click to collapse
Have you ever used Dictionary.com app.it has an option for offline mode in which it downloads the whole database into the internal memory to use it any time.i want to do that.I am asking where should i upload that database(server,website etc) so that i could download that easily in myapp
Sent from my GT-S5570 using XDA Premium 4 mobile app
arpitkh96 said:
Have you ever used Dictionary.com app.it has an option for offline mode in which it downloads the whole database into the internal memory to use it any time.i want to do that.I am asking where should i upload that database(server,website etc) so that i could download that easily in myapp
Sent from my GT-S5570 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Ah right I get it, you would need a server with sql support - or at least a hosting package that allows you to add your own database, then just use phpMyAdmin/MySQL to create the database.
Jonny said:
Ah right I get it, you would need a server with sql support - or at least a hosting package that allows you to add your own database, then just use phpMyAdmin/MySQL to create the database.
Click to expand...
Click to collapse
Thats ok.but which server or website can do this.
Sent from my GT-S5570 using XDA Premium 4 mobile app
arpitkh96 said:
Thats ok.but which server or website can do this.
Sent from my GT-S5570 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
2 services I'm currently using are http://www.unlimitedwebhosting.co.uk/ & http://x10premium.com/ - you're probably ok with the low cost options that offer "unlimited" stuff (subject to interpretation and fair use etc) because the overhead on MySQL is not a lot so you probably won't use much bandwidth.
As a general guide pretty much anyone who offers cpanel or similar control software will have MySQL enabled - though be sure to check because hosts have been known to disable MySQL in cpanel before.

Can I use tabs in more than 1 activity?

I'm making an app that uses tabs in my main activity. I want to be able to open another activity which will also use tabs. Everything I've could think of to try results in my app crashing when I open the second activity.
Is this possible to do? If so can someone help me out?
Sent from my Moto X using XDA Free mobile app
jeb192004 said:
I'm making an app that uses tabs in my main activity. I want to be able to open another activity which will also use tabs. Everything I've could think of to try results in my app crashing when I open the second activity.
Is this possible to do? If so can someone help me out?
Sent from my Moto X using XDA Free mobile app
Click to expand...
Click to collapse
Log? Activity code? Layouts? Manifest file?
Usually the most common reason this happening is because people forget to add the new activity to the AndroidManifest.xml file, if you've already done that then we need more information than you've currently given.
Sent from my HTC One using Tapatalk
It is definitely possible, can you show us where it errors out (I.e. logcat)
Well. I just discovered viewpager and I was able to get that to work how I wanted to use the tabs. Kinda wish I would've found this before asking the question. I have the horizontal scrolling working to swipe between pages. Can you guys help me get the vertical scroll view to work so I can view the rest of the text on each page?
Edit: never mind. Just got the vertical scrolling to work.
Sent from my Moto X using XDA Free mobile app
Code:
<ScrollView >
<LinearLayout> <!--or whatever layout you choose-->
</LinearLayout>
</ScrollView>

Categories

Resources