[android-developers] Regarding RSA

2013-11-22 Thread sourabh sahu
Dear All, Can you please share the code which uses RSA Encryption and Decryption. I want encryption at Android side and decryption at server side(asp.net) Any help will be highly appreciated. Regards, Sourabh Sahu -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: Hijri Calender in android

2013-11-22 Thread Jose_GD
This: http://en.wikipedia.org/wiki/Islamic_calendar Helps in some way? El jueves, 21 de noviembre de 2013 04:35:08 UTC-3, sree escribió: Hi friends, i am developing HRMS app,it is developing with english and arabic.When i am implementing calender date will display in english and

[android-developers] ActionBar strange behaviour

2013-11-22 Thread Simon Giddings
I am writing an application for Android tablets - version 4.0 (min sdk 14) Here is the content at the start of the activity : https://lh4.googleusercontent.com/-s7H2b2yp8Gk/Uo9E9VZP1XI/Am8/W0maYf5wefQ/s1600/actionbar_prb1.jpg When I click (I am working in the emulator) on the plus

[android-developers] new earnings report in developer console broken?

2013-11-22 Thread mot12
Hi, if this is not the right forum to ask this, I would appreciate if someone could point me to the right direction. Google Wallet doesn't seem to have the info I need. My problem regards the earnings reports on the developer console. Older reports seem fine but the October report has only 2

Re: [android-developers] Regarding RSA

2013-11-22 Thread Justin Anderson
Step 1: Read this - http://android-dev-tips-and-tricks.blogspot.com/2012/08/so-you-need-help.html Step 2: Start developing your project, using the tips provided in the above link Step 3: When you run into problems and have a specific question, try to solve it yourself first... Step 4: If you still

Re: [android-developers] Re: Long Click in the presences of a ContextualActionBar.

2013-11-22 Thread Justin Anderson
While I don't necessarily agree with his opinion that you should NEVER use a contextual action bar, perhaps this link will help you with some ways to work around your problem: http://dazcorp.blogspot.com/2013/04/edit-mode-and-why-using-contextual.html Thanks, Justin Anderson MagouyaWare

Re: [android-developers] Provide events to Calendar-App using ContentProvider

2013-11-22 Thread Justin Anderson
Step 1: Read this - http://android-dev-tips-and-tricks.blogspot.com/2012/08/so-you-need-help.html Step 2: http://lmgtfy.com/?q=android+calendar+content+provider Step 3: Read up on Calendar Provider (the very FIRST link in the above search) Thanks, Justin Anderson MagouyaWare Developer

Re: [android-developers] status bar noticfication click event

2013-11-22 Thread Justin Anderson
Unless you are modifying the Android OS and writing your own custom version of Android there is no way to do this. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Thu, Nov 21, 2013 at 5:10 AM, Rahul Kaushik rahulkaushi...@gmail.comwrote: Hi, How i

Re: [android-developers] Re: Long Click in the presences of a ContextualActionBar.

2013-11-22 Thread Nathan
On Friday, November 22, 2013 8:23:01 AM UTC-8, MagouyaWare wrote: While I don't necessarily agree with his opinion that you should NEVER use a contextual action bar, perhaps this link will help you with some ways to work around your problem:

[android-developers] Car dock mode in 4.3

2013-11-22 Thread chris a.
We created an app for enterprise customer that launches a car mode activity when driving. Our customers bought android phones largely for this reason... Now, car dock mode no longer launches our app when the home key is pressed in 4.3. If this issue is not resolved, they may not buy new

[android-developers] ViewPager does not respect WRAP_CONTENT?

2013-11-22 Thread Ab
I would like to create a ViewPager whose width wrap's to its contents, and is centered horizontally in it's parent. The first code snippet uses a LinearLayout to create this effect, as shown in the first screenshot. The second code snippet is my attempt to do this with a ViewPager instead of

[android-developers] Android Studio is driving me nuts

2013-11-22 Thread Brill Pappin
I'm really hating that I can't have more than one project open in the same place. I use that feature *all the time* in Eclipse. So maybe I'm missing something: Can anyone tell me if and how to display a panel similar to the Eclipse Package Explorer panel? -- You received this message

Re: [android-developers] Android Studio is driving me nuts

2013-11-22 Thread Larry Meadors
I'm an IDEA user, so it's less maddening...but it still has it's moments. :) It doesn't do multiple projects in one window - unfortunate, but true. I think if you select the Packages view in the project pane, it'll be close to the Package Explorer view. Larry -- You received this message

[android-developers] Passing the design for tablets checks (dev console optilmization tips)

2013-11-22 Thread b0b
I have an app that I think is tablet friendly yet the dev console optimization tips report: Your layout should make use of the available space on tablets Great. It point to this page to solve it: http://developer.android.com/distribute/googleplay/quality/tablet.html#use-extra-space The

Re: [android-developers] Android Studio is driving me nuts

2013-11-22 Thread Brill Pappin
Thanks Larry, I'm both glad and disappointed that I'm not just missing something. I switched from IDEA to Eclipse more than a decade ago, so things are somewhat different now. In Eclipse I'm used to working on multiple projects at once, even if its just a library i need to modify across

Re: [android-developers] Android Studio is driving me nuts

2013-11-22 Thread Tor Norbye
With the new gradle build system you shouldn't have to have different projects for different versions (free, paid, etc.); you should be able to set everything up in a single project, with separate resources and classes (as necessary) for your variations. This is now handled by the build system in

[android-developers] Re: Eclipse not starting since last ADT update

2013-11-22 Thread Nathan
Maybe it is time to start with Android Studio, despite all the warnings that is still very preproduction. No leads on getting Eclipse to start. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Android Studio is driving me nuts

2013-11-22 Thread Brill Pappin
That does sound like a pretty cool feature, a lot like Maven Modules. Although it might actually resolve the multi-lib project, it is not really the same thing. Having the server code, the mobile code and all my other projects for reference is a big deal. e.g. I've even had a single project

Re: [android-developers] Android Studio is driving me nuts

2013-11-22 Thread Brill Pappin
Just took a closer look at that documentation you sent. Build variants is going to be a *huge* help to me, and one I look forward to getting into. On Saturday, November 23, 2013 1:05:08 AM UTC-5, Brill Pappin wrote: That does sound like a pretty cool feature, a lot like Maven Modules.

[android-developers] Re: ViewPager does not respect WRAP_CONTENT?

2013-11-22 Thread gjs
Hi, Couldn't you just also add the linearlayout (with its textview) to the relative layout in (2) as you did in (1) ? And specifically, add and remove the linear layout to the collection in your instantiate destroy item methods instead of just the text view. Regards On Saturday, November

[android-developers] Re: Car dock mode in 4.3

2013-11-22 Thread gjs
Hi, You mean it did launch your app when the device is placed in the car dock before 4.3, but after pressing Home in 4.3 the user no longer somehow later returns to your activity, running in car dock mode ? Perhaps try explaining the old behaviour vs the new behaviour with 4.3 in a lot more