[android-developers] Monkey Talk

2015-02-08 Thread janvi
Hello All, I'm new to monkey talk tool.Is the following feature supported in Monkey Talk? I have an App which supports 5 languages(de,hu,da en,etc).Button names and strings used in App are different for these languages. I need to test validation of these strings .I have an excel which contains

[android-developers] Build Android project using ant script

2014-09-10 Thread janvi
Hello All, I have single code base of android project which merges out as two Apps when I apply its corresponding theme. i.e Project A is a single code base when I apply theme i.e theme_one which I set in manifest then it is App1. For the same code base i just change theme as theme_two in

Re: [android-developers] Re: Android XML

2014-09-02 Thread janvi
Can any one tell me the disadvantages of using the above approach? Thanks in advance On Monday, August 4, 2014 10:02:35 AM UTC+5:30, janvi wrote: Thanks Nemichand I will surely try this out. I have one approach here which works fine i.e if use android:launchMode=singleTask

Re: [android-developers] Re: Android XML

2014-08-03 Thread janvi
On Sunday, August 3, 2014 6:01:23 PM UTC+5:30, Nemichand wrote: Debug ur code and override onDestroy method.check it is called in both activity On Aug 1, 2014 6:10 PM, janvi jagruth...@gmail.com javascript: wrote: Ya I have Called finish before starting Activity B but still this issue exists

Re: [android-developers] Re: Android XML

2014-08-01 Thread janvi
A remains on the backstack and reappears when B finishes. On Jul 30, 2014 5:19 AM, janvi jagruth...@gmail.com javascript: wrote: Hi Deepak Thank you for your support:) But if I do not call Activity A onbackpress of B then if just finishes the App I mean App gets closed. MyCode onClick

[android-developers] Re: Android XML

2014-07-30 Thread janvi
Hi Deepak Thank you for your support:) But if I do not call Activity A onbackpress of B then if just finishes the App I mean App gets closed. MyCode onClick(..) { start activity B } }class B : Activity { onBackPressed() { this.finish(); Any help would be appreciated:) Thanks in

[android-developers] Re: Android XML

2014-07-17 Thread janvi
of overriding on back button? If you normally use startActivity() in activity A to start B, then when you press back from B to A, it should act normally. Le vendredi 11 juillet 2014 01:50:31 UTC-4, janvi a écrit : Hello All, I have an issue in my App. I have three activities called A , B

[android-developers] Android XML

2014-07-10 Thread janvi
Hello All, I have an issue in my App. I have three activities called A , B ,C In the activity A I have a button and onclick of that I open another Activity called ShowChart.Onback press of ShowChart Activity I navigate to Activity A Onback press of Activity A I close the App. Following is

[android-developers] Re: Google Play services out of date Requires 3225100 but found 3136136

2014-02-24 Thread janvi
Any info on this??? On Friday, February 14, 2014 2:46:34 PM UTC+5:30, janvi wrote: One more info is that I have used Google-Play-services for Push Notifications[GCM] On Friday, February 14, 2014 2:44:36 PM UTC+5:30, janvi wrote: Hello All, Can any one tell me how to fix this bug

[android-developers] Google Play services out of date Requires 3225100 but found 3136136

2014-02-14 Thread janvi
Hello All, Can any one tell me how to fix this bug?? It is reported by the end-user's and here Iam unable to reproduce it. As per my google search it is because of Google-Play-Service is not compatible with SDK which we have used for development. Please correct me if Iam wrong and share the

[android-developers] Re: Google Play services out of date Requires 3225100 but found 3136136

2014-02-14 Thread janvi
One more info is that I have used Google-Play-services for Push Notifications[GCM] On Friday, February 14, 2014 2:44:36 PM UTC+5:30, janvi wrote: Hello All, Can any one tell me how to fix this bug?? It is reported by the end-user's and here Iam unable to reproduce it. As per my google

Re: [android-developers] Re: AndroidPushNotification

2013-11-18 Thread janvi
Hello All, Do any one have any idea of how to use Android Widget to get the same look and feel of how IOS uses badge ICON to display pushNotification?? plz help its urgent. Thanks in advance On Friday, November 15, 2013 3:40:22 PM UTC+5:30, janvi wrote: Reply plz

Re: [android-developers] Re: AndroidPushNotification

2013-11-15 Thread janvi
, November 13, 2013 3:00:20 PM UTC+5:30, janvi wrote: Ya I got it thank you :) Can any one of you reply me for this query Thank you Mukesh :) I have one more query regarding push notification here If the user upgrades his O.S will GCM generate new token ID??Or using old token can we get

Re: [android-developers] Re: AndroidPushNotification

2013-11-13 Thread janvi
from App perspective Thanks in advance On Wednesday, November 13, 2013 12:53:20 PM UTC+5:30, Mukesh Srivastav wrote: Janvi, How is your architecture of the app ? secondly, your business logic should have all the GCM Registers users in your server DB, so that , it would help you

Re: [android-developers] Re: AndroidPushNotification

2013-11-12 Thread janvi
On Mon, Nov 11, 2013 at 10:56 AM, janvi jagruth...@gmail.comjavascript: wrote: hello all I need urgent help here I got push notification successfully from the server.It is an error code which is sent by external server to the GCM. What if the error is fixed and the same message

[android-developers] Re: AndroidPushNotification

2013-11-10 Thread janvi
Is there any API to cross check with the GCM whether the notification is still active or not?? Any other approach to handle this Thanks in advance On Thursday, November 7, 2013 12:00:24 PM UTC+5:30, janvi wrote: I have implemented and working fine... One more query here

[android-developers] Re: AndroidPushNotification

2013-11-06 Thread janvi
UTC+3, janvi wrote: Hi piren than you :) Using the following code Iam able to go to next activity and alertdialogue. Intent notificationIntent = new Intent(this, NotificationReceiverActivity.class); //data received from the push notification is placed in bundle

Re: [android-developers] Re: AndroidPushNotification

2013-10-27 Thread janvi
Thank you :) On Friday, October 25, 2013 8:56:32 AM UTC+5:30, TreKing wrote: On Thu, Oct 24, 2013 at 6:46 AM, Piren gpi...@gmail.com javascript:wrote: Regarding count, you can have a count on the notification icon, but not on the launch screen icon. Keep in mind that this changed

[android-developers] android connectivity manager

2013-10-27 Thread janvi
Hello All, I have a query here regarding how to find whether our phone has internet connected or not. Using the following code ConnectivityManager cm = (ConnectivityManager)context.getSystemService(Context.CONNECTIVITY_SERVICE); NetworkInfo activeNetwork = cm.getActiveNetworkInfo();

[android-developers] AndroidPushNotification

2013-10-24 Thread janvi
Hello All, Iam new to pushNotification I have few doubts here. I have implemented push Notification feature.Now if I want to open an alert dialogue when the user clicks on push notification I don't know how to open the alert dialogue here???any ideas One more question is as follows How

[android-developers] Re: AndroidPushNotification

2013-10-24 Thread janvi
add an intent to the notification that launches an activity which will have a dialog (or look like a dialog). Regarding count, you can have a count on the notification icon, but not on the launch screen icon. On Thursday, October 24, 2013 2:08:16 PM UTC+3, janvi wrote: Hello All, Iam

Re: [android-developers] JNI

2013-09-02 Thread janvi
) in your application environment. Now application can load library with system call system.load(), with that JNI calls will be available in the application environment. Cheers, Santhosh On Monday, 19 August 2013 14:54:04 UTC+5:30, janvi wrote: Hi Still making it clear of what actually

Re: [android-developers] JNI

2013-08-19 Thread janvi
project? On Monday, August 19, 2013 9:08:56 AM UTC+5:30, janvi wrote: Sorry to trouble you by asking the same question,but iam completely new to this My doubt is I have a seperate CPP project which has .so file in its lib folder. I have android project which is seperate project now Iam

Re: [android-developers] JNI

2013-08-18 Thread janvi
18, 2013 12:58:34 PM UTC+5:30, Piren wrote: you were already answered - in the libs folder under the proper architecture name, where it was placed by the build process. Also, you should just follow the samples provided. On Sunday, August 18, 2013 8:28:53 AM UTC+3, janvi wrote: Hi Ya .so

[android-developers] JNI

2013-08-17 Thread janvi
Hi All Iam new to JNI concepts Need your help in the following topic I have an android app(seperate project) and functions which this app performs are written using CPP and I have wrapper classes for all of these functions. I need info on how to call these functions from my android app. Plz

Re: [android-developers] JNI

2013-08-17 Thread janvi
:30, mbanzon wrote: Please look at this documentation: http://developer.android.com/tools/sdk/ndk/index.html On Sat, Aug 17, 2013 at 12:19 PM, janvi jagruth...@gmail.comjavascript: wrote: Hi All Iam new to JNI concepts Need your help in the following topic I have an android app

Re: [android-developers] JNI

2013-08-17 Thread janvi
already be in the correct folder below libs. As Android support multiple native architectures each ABI is in a separate folder below libs, see the NDK docs for the folder names. On Saturday, August 17, 2013 3:21:38 PM UTC+1, janvi wrote: Hi Thanks for your reply... I have read

[android-developers] Re: Google API to display list of countries and regions

2013-04-02 Thread janvi
AM UTC-5, janvi wrote: Hi all Iam developing an android app which has spinner and onclick of spinner I should display list of countries and their regions. Any Google API can provide me that dataPlease reply me its very urgent Thanks in advance -- -- You received this message

[android-developers] Google API to display list of countries and regions

2013-04-01 Thread janvi
Hi all Iam developing an android app which has spinner and onclick of spinner I should display list of countries and their regions. Any Google API can provide me that dataPlease reply me its very urgent Thanks in advance -- -- You received this message because you are subscribed to the

[android-developers] Android Canvas development

2013-02-19 Thread janvi
Hello all Iam new to canvas android development.I want to develop an android app using canvas,but how to give support to diiferent devices(hdpi,ldpi,mdpi) is bothering me alot. Any suggestions would be appreciated plz help me out thank you in advance -- -- You received this message

[android-developers] Re: Android Canvas development

2013-02-19 Thread janvi
it scaled. On Tuesday, February 19, 2013 8:40:29 AM UTC-6, janvi wrote: Hello all Iam new to canvas android development.I want to develop an android app using canvas,but how to give support to diiferent devices(hdpi,ldpi,mdpi) is bothering me alot. Any suggestions would be appreciated plz

[android-developers] Re: Canvas Android

2013-02-13 Thread janvi
Image its clarity gets reduced when we use on devices of different sizes So... On Tuesday, February 12, 2013 11:24:36 PM UTC+5:30, bob wrote: Why not just use an image? On Tuesday, February 12, 2013 11:03:57 AM UTC-6, janvi wrote: Thanks But those shaders are not suting my

[android-developers] Re: Canvas Android

2013-02-13 Thread janvi
Bitmap shader is nothing but use an image which i dont want to do any alternate plz!! On Tuesday, February 12, 2013 10:38:05 PM UTC+5:30, skink wrote: janvi wrote: Thanks But those shaders are not suting my requirement I have drawn vertical rectangle and want to fill

[android-developers] Re: Canvas Android

2013-02-12 Thread janvi
Thanks But those shaders are not suting my requirement I have drawn vertical rectangle and want to fill lines in that so plz suggest me or give me some sample sample example Thanks in advance On Friday, February 8, 2013 12:42:52 PM UTC+5:30, skink wrote: janvi wrote: Hello all I

[android-developers] Canvas Android

2013-02-07 Thread janvi
Hello all I need small info,I have drawn a rectangle using canvas in android now i want to fill this rectangle with lines instead of solid color Plz help me out to solve this Which gradient is useful in this case?? as per my knowledge linear and radial gradient fill complete solid color

[android-developers] How Android LVL react when one or more gmail accounts are logged in

2012-11-21 Thread janvi
Hello all I need some clarification on how android LVL will react when multiple gmail accounts are logged in the phone i,e one of the account may be valid account(account through which app was purchased) and other may be normal gmail accounts Will it actually validate the license check

Re: [android-developers] Tab Customisation

2012-10-14 Thread janvi
related only towards development.. Google provides sample application and tutorials..!! That i what i am asking you to do..!! http://lmgtfy.com/?q=tabview+android+example On Wed, Oct 10, 2012 at 9:26 PM, janvi jagruth...@gmail.com javascript: wrote: Hello Bapat Dnt give these kind of replies

Re: [android-developers] Tab Customisation

2012-10-10 Thread janvi
On Mon, Oct 8, 2012 at 1:50 PM, janvi jagruth...@gmail.com javascript:wrote: Hello All I need a small information on tabs in android. I want to customise the tab in a similar way as our message tab in android phones Suppose when message arrives to us we get number on the message tab,I

[android-developers] Tab Customisation

2012-10-08 Thread janvi
Hello All I need a small information on tabs in android. I want to customise the tab in a similar way as our message tab in android phones Suppose when message arrives to us we get number on the message tab,I want to implement the same functionality in my application. Just provide me with the

Re: [android-developers] Re: Android LVL

2012-09-17 Thread janvi
ok fine thankyou Il try this and let you know the result On Monday, September 17, 2012 10:20:12 AM UTC+5:30, Vinay Kumar wrote: Yes. On Mon, Sep 17, 2012 at 9:08 AM, janvi jagruth...@gmail.com javascript: wrote: Ok thank you for this Is this licensing option which I have to enable

[android-developers] Re: Licensing sample issue - Application error: 3

2012-09-17 Thread janvi
the emulator is super slow, needs to boot up, etc. it's much, MUCH faster to just install the app on the phone and run right away. On Monday, September 17, 2012 11:51:54 AM UTC+8, janvi wrote: Hello Ristar Sorry for interrupting you. Iam also working on the same licensing feature

Re: [android-developers] Re: Android LVL

2012-09-16 Thread janvi
Ok fine thanks for this I will try this i,e il upload the app and try to test it and will require your help if something goes wrong Plz help me out here Thanks in advance On Sunday, September 16, 2012 7:41:49 PM UTC+5:30, Vinay Kumar wrote: yes, we need to upload the app without publishing

Re: [android-developers] Re: Android LVL

2012-09-16 Thread janvi
Thanks for this I will try this i,e il upload the app and try to test it and will require your help if something goes wrong Plz help me out here Thanks in advance On Saturday, September 15, 2012 10:06:44 PM UTC+5:30, Ichsan wrote: If you read the documentation, it is clear that you need

Re: [android-developers] Re: Android LVL

2012-09-16 Thread janvi
I need the following information What are actually testing credentials? Is it enough to add a test account(gmail account of tester) in the option provided in the edit profile page of google publisher account? Still iam i missing any thing ?or this is the only step needed for this? On Sunday,

Re: [android-developers] Re: Android LVL

2012-09-16 Thread janvi
option.there you probably you need to enter your(tester) gmail id. That will be your tester credentials. On Sun, Sep 16, 2012 at 9:35 PM, janvi jagruth...@gmail.com javascript: wrote: I need the following information What are actually testing credentials? Is it enough to add a test account

[android-developers] Re: Licensing sample issue - Application error: 3

2012-09-16 Thread janvi
Hello Ristar Sorry for interrupting you. Iam also working on the same licensing feature of the android app and need some info from you Iam also facing the same error of *Application Error:3*.May I know the cause for this? The following is info which I need Once I

[android-developers] Re: Android LVL

2012-09-15 Thread janvi
Any body who has already tried this help me out plz Its very urgent On Friday, September 14, 2012 5:32:02 PM UTC+5:30, janvi wrote: Dear All I need a favour,though it is old topic i need small info on how to go a head with Android LVL Plz reply me as soon as possible The following is my

Re: [android-developers] Re: Android LVL

2012-09-15 Thread janvi
with Android sdk? On Sat, Sep 15, 2012 at 2:50 PM, janvi jagruth...@gmail.comjavascript: wrote: Any body who has already tried this help me out plz Its very urgent On Friday, September 14, 2012 5:32:02 PM UTC+5:30, janvi wrote: Dear All I need a favour,though it is old topic i need small

[android-developers] Android LVL

2012-09-14 Thread janvi
Dear All I need a favour,though it is old topic i need small info on how to go a head with Android LVL Plz reply me as soon as possible The following is my sample code which I have written package com.example.helloworld; import java.io.FileInputStream; import java.io.FileNotFoundException;

[android-developers] Re: Android Licensing LVL

2012-09-14 Thread janvi
Hi All Sorry for interrupting but I need this info urgently so Plz anybody help me out here I need a small info on how to start with Android LVL The following is my code package com.example.helloworld; import java.io.FileInputStream; import java.io.FileNotFoundException; import