[android-developers] Need some help with android studio issues

2016-07-02 Thread Sachin Mathur
I was just wondering if you could help me with some android studio issues.. I have tried every thing as told on forums.. I am not able to run any emulators or debuggable devices on android studio.. It shows the error.."/dev/kvm not found. Enable VT-x in your BIOS security settings, ensure

[android-developers] Need bit help with android

2013-05-02 Thread Saqib Vohra
I need bit help . I need to implement it in my app. I was wondering if i can launch an activity or application when a text is selected in any application like browser, messages etc. Like when we select a text at any where a small pop-up appears mentioning cut, copy, paste option. can i add

Re: [android-developers] Need bit help with android

2013-05-02 Thread TreKing
On Wed, May 1, 2013 at 3:16 AM, Saqib Vohra svh...@gmail.com wrote: I was wondering if i can launch an activity or application when a text is selected in any application like browser, messages etc. Like when we select a text at any where a small pop-up appears mentioning cut, copy, paste

Re: [android-developers] Need some help with MyFirstApp tutorial.

2012-09-12 Thread Dudley Heath
On Saturday, 25 August 2012 08:02:39 UTC+10, MagouyaWare wrote: Intent intent = new Intent(this, DisplayMessageActivity. I have no idea where to put that... It gives me errors, everywhere I tried. As you said, and according to the tutorial, it belongs inside of the sendMessage()

Re: [android-developers] Need some help with MyFirstApp tutorial.

2012-08-24 Thread Justin Anderson
Intent intent = new Intent(this, DisplayMessageActivity. Well, for one, this isn't valid code... It should be this: Intent intent = new Intent(this, DisplayMessageActivity.class); I have no idea where to put that... It gives me errors, everywhere I tried. As you said, and according to the

[android-developers] Need some help with MyFirstApp tutorial.

2012-08-16 Thread Dutchie
Hello, I only recently got into developing an app for Android, and I'm following the MyFirstApp tutorial. However im stuck on the adding and intent part... http://developer.android.com/training/basics/firstapp/starting-activity.html My MainActivity looks like this right now: package

[android-developers] Need to Help android phonegap

2012-08-02 Thread chumki ghosh
Hello All, I want to make a sample application on phone-gap android.I want to use accelerometer. Now i able to get values of X,Y,Z axis. But i want to implement like light sensor on it.Like when user recieve any call and bring the device front of ear den light gone ON and when device lies flat

Re: [android-developers] Need to Help android phonegap

2012-08-02 Thread fahad mullaji
*Chumki*, http://www.vogella.com/articles/AndroidSensor/article.html Check this code might help you.Instead of doing actions on compass you switch off and on your phone light. *Thanks* Fahad Mullaji On Thu, Aug 2, 2012 at 2:46 PM, chumki ghosh ghoshanindi...@gmail.comwrote: Hello All, I

[android-developers] need a help

2012-02-23 Thread RIT-MCA-2009
hi... am an MCA student... iam doing my mini project on android... my project is devoleping an app for mobile banking... am a beginner in android.. hence i need to create a database server for it... could u give a suggestion... also how i can connect the database server with the app... -- You

Re: [android-developers] need a help

2012-02-23 Thread sourabh sahu
Use Webservices. On Wed, Feb 22, 2012 at 11:32 PM, RIT-MCA-2009 vishnubbala...@gmail.comwrote: hi... am an MCA student... iam doing my mini project on android... my project is devoleping an app for mobile banking... am a beginner in android.. hence i need to create a database server for it...

Re: [android-developers] need a help

2012-02-23 Thread TreKing
On Wed, Feb 22, 2012 at 12:02 PM, RIT-MCA-2009 vishnubbala...@gmail.comwrote: iam doing my mini project on android... my project is devoleping an app for mobile banking... That does not sound like a mini project. am a beginner in android Honestly, the best thing you can do is back up

[android-developers] Need some help troubleshooting my app

2012-01-16 Thread jp
Can anyone help me get my app connected to my database. I want a user to enter information in the registration page and have that data update and store in mysql database. For some reason though it is not working. My exception error is being caught and saying my toast message can not connect and no

[android-developers] Need some help here

2012-01-13 Thread deathrequiem
Hi guys im totally new to android development. Touched abit on WP7 for the past few school projects. This semester my task is to build an antivirus application and a secure communication channel(sort of like skype but with encryption) could you please point me in the right direction? not asking

Re: [android-developers] Need some help here

2012-01-13 Thread TreKing
First, when posting, try to give your post a relevant title. Something that tells people what you're asking about and helps people that are interested in your topic or, that later need help with that topic, easily identify the thread. Need some help here is fairly useless and makes your post

[android-developers] Need Intent Help

2011-11-29 Thread Kiran Kumar Kendole
Hey guys, I have a problem while using intents. Can you please suggest me the right way. I have an Activity1 which contains some methods ( addData(),deleteData() ). when I use intent to other Activity2 Class.. I am not able to access the methods which are in Activity1. I cant copy paste all the

Re: [android-developers] Need Intent Help

2011-11-29 Thread Mukesh Srivastav
h.. Poor architecture of the application.Please follow the MVC Pattern thats helps, just dont write the code blindly. Have a util package of the application and put all your common methods there. Warm Regards, *Mukesh Kumar*, Android Consultant/Freelancer, India,Hyderabad. On Tue, Nov 29,

Re: [android-developers] Need Intent Help

2011-11-29 Thread siva prakash
If you want to access those methods in various activities, why dont you create a simple java class and acess them?? , if you want to share variables across different activities, u can save them in AppPreferences . Please provide me more details if i didnt get u :) On 11/29/2011 04:04 PM,

Re: [android-developers] Need Intent Help

2011-11-29 Thread Kiran Kumar Kendole
Hey Siva and Mukhesh, Thanks for the response. The problem which I am forcing to use this unfair architecture is.. I have hard time to show different options menu for different layout XML files.. Can you please give me a quick example how to change the options based on the layout. Thanks,

Re: [android-developers] Need Intent Help

2011-11-29 Thread Mukesh Srivastav
Why not go with TAB Activity, that helps. On Tue, Nov 29, 2011 at 6:22 PM, Kiran Kumar Kendole k.kirankumar1...@gmail.com wrote: Hey Siva and Mukhesh, Thanks for the response. The problem which I am forcing to use this unfair architecture is.. I have hard time to show different options

Re: [android-developers] Need Intent Help

2011-11-29 Thread Yahor Paulavets
Hello, If you need to use some methods in all your Activities - create a base Activity class with these methods :) And use these methods in dirived Activity A and B. No copy past is needed. Best regards, Yahor On Tue, Nov 29, 2011 at 3:01 PM, Mukesh Srivastav mukicha...@gmail.comwrote: Why

Re: [android-developers] Need Intent Help

2011-11-29 Thread Kiran Kumar Kendole
Hey Guys, Thank you all for your Help . Finally I completed my assignment. Finally I have one question. I have created the APK in 2.3.3 . We have different mobiles with different versions.. Its not working on all due to compatibility may be. Can you guys suggest me what I suppose to do so that

Re: [android-developers] Need Intent Help

2011-11-29 Thread Kumar Bibek
What is not working? *Thanks and Regards, Kumar Bibek* * http://techdroid.kbeanie.com http://www.kbeanie.com* On Tue, Nov 29, 2011 at 10:04 PM, Kiran Kumar Kendole k.kirankumar1...@gmail.com wrote: Hey Guys, Thank you all for your Help . Finally I completed my assignment. Finally I have

Re: [android-developers] Need Intent Help

2011-11-29 Thread Kiran Kumar Kendole
Hi, When I install the APK in my mobile (Froyo 2.2) , application is not working. But its working fine in AVD with 2.3.3 version. I want to make my APK in such a way that it should work in all devices. Thanks, KIRANKUMARKENDOLE On Tue, Nov 29, 2011 at 11:42 AM, Kumar Bibek coomar@gmail.com

Re: [android-developers] Need Intent Help

2011-11-29 Thread Kumar Bibek
application not working !! That doesn't say much. *Thanks and Regards, Kumar Bibek* * http://techdroid.kbeanie.com http://www.kbeanie.com* On Tue, Nov 29, 2011 at 10:16 PM, Kiran Kumar Kendole k.kirankumar1...@gmail.com wrote: Hi, When I install the APK in my mobile (Froyo 2.2) ,

Re: [android-developers] Need Intent Help

2011-11-29 Thread Raghav Sood
Yes. That's all very good. What is not working in your app on 2.2? On Tue, Nov 29, 2011 at 10:16 PM, Kiran Kumar Kendole k.kirankumar1...@gmail.com wrote: Hi, When I install the APK in my mobile (Froyo 2.2) , application is not working. But its working fine in AVD with 2.3.3 version. I want

Re: [android-developers] Need Intent Help

2011-11-29 Thread Kiran Kumar Kendole
When I try to install on the APK on my mobile which have 2.2 versionof android... I see the error Parsing Error. Thanks, KIRANKUMARKENDOLE On Tue, Nov 29, 2011 at 11:48 AM, Raghav Sood raghavs...@androidactivist.org wrote: Yes. That's all very good. What is not working in your app on 2.2?

Re: [android-developers] Need Intent Help

2011-11-29 Thread Kumar Bibek
Ok, So, it doesn't even gets installed. Look at your manifest file and remove stuff which are not available on 2.2 *Thanks and Regards, Kumar Bibek* * http://techdroid.kbeanie.com http://www.kbeanie.com* On Tue, Nov 29, 2011 at 10:30 PM, Kiran Kumar Kendole k.kirankumar1...@gmail.com wrote:

Re: [android-developers] Need Intent Help

2011-11-29 Thread Mukesh Srivastav
you need to do the clean build or Delete the bin directory, recompiled it and deploy it, that will help. Warm Regards, *Mukesh Kumar*, Android Consultant/Freelancer, India,Hyderabad. On Tue, Nov 29, 2011 at 10:32 PM, Kumar Bibek coomar@gmail.com wrote: Ok, So, it doesn't even gets

Re: [android-developers] Need Intent Help

2011-11-29 Thread Kiran Kumar Kendole
I hope I am confusing you guys. I created the app using 2.3.3 . When I install this APK , in Samsung galaxy S2(2.3.3) the application is working good. But the same application is not working in HTC (2.2). Parsing error. I WANT MY APPLICATION TO BE RUN ON ALL DEVICES WHETHER IT MAY BE 2.1 , 2.2 or

Re: [android-developers] Need Intent Help

2011-11-29 Thread Kumar Bibek
See my previous answer :) That might help. *Thanks and Regards, Kumar Bibek* * http://techdroid.kbeanie.com http://www.kbeanie.com* On Tue, Nov 29, 2011 at 10:51 PM, Kiran Kumar Kendole k.kirankumar1...@gmail.com wrote: I hope I am confusing you guys. I created the app using 2.3.3 . When

Re: [android-developers] Need Intent Help

2011-11-29 Thread Raghav Sood
I hope I am confusing you guys. You seem more confused than us right now, I created the app using 2.3.3 . When I install this APK , in Samsung galaxy S2(2.3.3) the application is working good. But the same application is not working in HTC (2.2). Parsing error. I WANT MY APPLICATION TO

Re: [android-developers] Need Intent Help

2011-11-29 Thread Mukesh Srivastav
Application always would be back to forward compatibility , not from forward to backward. You create your apps on 2.1 and deploy it in 2.1 and above. Warm Regards, *Mukesh Kumar*, Android Consultant/Freelancer, India,Hyderabad. On Tue, Nov 29, 2011 at 10:51 PM, Kiran Kumar Kendole

Re: [android-developers] Need Intent Help

2011-11-29 Thread Satvik Jagannath
Everyone talks about MVC nowadays!! Can u please help me with some good resources for MVC?? On Nov 29, 2011 4:11 PM, Mukesh Srivastav mukicha...@gmail.com wrote: h.. Poor architecture of the application.Please follow the MVC Pattern thats helps, just dont write the code blindly. Have a

[android-developers] Need urgent Help for Maps custom Tiles in android

2011-11-21 Thread nikhil
Hi, I am very new to android. I am given a task to create a application which includes usage of MapView. I have managed to show the zoomed required location, add Markers using overlays... on map with no errors... Now the most difficult part for me and my problem: I am also told to

[android-developers] Need urgent Help for Overlays in android maps

2011-11-21 Thread raj mhalotra
Hi All new to android. I am given a task to create a application which includes adding a custom map on the existing google map. I think that can be done with help of overlays. But now the problem is I want that map to zoomin and zoom out with the original map. Can anyone please help me. Raj

Re: [android-developers] Need urgent Help for Maps custom Tiles in android

2011-11-21 Thread TreKing
On Sun, Nov 20, 2011 at 2:01 PM, nikhil nikhilps...@gmail.com wrote: I am also told to overwrite/overlay the default map with the customized image of the area(say garden). Have you read the maps TOS? Because that may very well violate them. After lot of search I found that Maps Tiles is one

Re: [android-developers] Need urgent Help for Overlays in android maps

2011-11-21 Thread TreKing
On Sun, Nov 20, 2011 at 11:17 AM, raj mhalotra raj.smo...@gmail.com wrote: But now the problem is I want that map to zoomin and zoom out with the original map. OK. Can anyone please help me. With what? http://www.catb.org/~esr/faqs/smart-questions.html

[android-developers] Need Your Help: How to send video of mediarecorder over TCP and How can i receive this on server side.

2011-11-16 Thread muhammad.ume...@hotmail.com
Hi, I found Mediarecorder that record video, i also found that parcelFileDescriptor fromSocket can use to send video over TCP but I am not able to send this video and recieve on a server side. Mediarecorder parcelFileDescriptor fromSocket that perfect to record video on sd card but when

[android-developers] Need a help with Android Swipe Action

2011-11-10 Thread Bishan
please see the attachment. I need to add swipe action to my project with HorizontalPager.java file in my attached project. i have tried to do that, unfortunately i'm unable to find a way to do that. please any one help me to implement swipe action with HorizontalPager.java file. -- You

[android-developers] Need some help for right implementation of a method in KeyEvent.Callback interface

2011-11-08 Thread kerpie
Hi Everybody! I was looking to get a message( Toast ) when a key is pressed multiple times, I found the onKeyMultiple(int keyCode, int repeatCount, KeyEvent event) method is able to do that, but it looks like I'm not implementing it right, do you have an example about it? or did you do this

Re: [android-developers] Need your help: how to monitor the dialpad key press action in another application during an active call?

2011-09-08 Thread Mark Murphy
On Thu, Sep 8, 2011 at 1:28 AM, xavier bzp1...@gmail.com wrote: I know that I can't replace the default InCallScreen when the call has been set up, but I really want to show some additional info during the call, so I want to create one new activity which is transparent and always above the

[android-developers] Need your help: how to monitor the dialpad key press action in another application during an active call?

2011-09-07 Thread xavier
I know that I can't replace the default InCallScreen when the call has been set up, but I really want to show some additional info during the call, so I want to create one new activity which is transparent and always above the default InCallScreen. The question is that I want to display different

[android-developers] Need your help: how to monitor the dialpad key press action in another application during an active call?

2011-09-07 Thread xavier
My last request can't be meet so I just repost it. Hi All, I know that I can't replace the default InCallScreen when the call has been set up, but I really want to show some additional info during the call, so I want to create one new activity which is transparent and always above the default

[android-developers] Need some help in using MediaRecorder

2011-06-04 Thread Parbhakar Bikkaneti
Hi, Am using the following code to record a conversation. public class CallRecordingProcess extends BroadcastReceiver { static AudioManager audiomanager; @Override public void onReceive(Context arg0, Intent arg1) { // If Call Recording is not

Re: [android-developers] Need some help in using MediaRecorder

2011-06-04 Thread Harri Smått
The code is working fine for the first incoming call. The conversation is getting recorded successfully. For the later calls, the conversation is not getting recorded. Hi Parbhakar, I bought my first Android phone, Samsung Galaxy S2, some weeks ago, and I've found many bugs in it already

[android-developers] Need some help from the experts

2011-06-03 Thread Mehboob
Am new to Android word . I just want to know the procedure to bring all the phone contacts in to my app on clicking a button along with check boxes to select some contacts. please help me out of this. Thank you. -- You received this message because you are subscribed to the Google Groups

[android-developers] Need some help in retrieving the Starred Contacts

2011-05-17 Thread Parbhakar Bikkaneti
Hello everybody, I am facing a problem when I am trying to access the Starred contacts. Please help me in solving the problem. *This Code is not Showing any exception* When I am running the following code for on my android device the code is working fine for the contacts i.e., - The contacts

[android-developers] [Need your help!!]Automation test by using Monkey Runner

2011-04-10 Thread Ella
We know, A GUI automation testing tool -- monkey runner is there, it provide some functions such as Keyboard function, input message functions as well as touch, which are all very good supports for the automation testing. However, there seems somethings that puzzle me a lot, so search helps from

[android-developers] Need quick help about superboot

2011-02-02 Thread Raju
Hi Am using Nexus one (build FRG83D ) , while i was trying to superboot my nexus one, i downloaded a package and run the command fastboot-windows.exe flash boot nexusone.superboot.1.1.img After that ... there is no wifi signal, did not recognize sd, very glitchy, unstable and maybe worst of

[android-developers] need urgent help regarding snapshot of web page

2011-01-11 Thread kavitha b
Hi All, I need to capture snapshot of webview and write the snapshot into a pdf file.User should not see the procedure of taking snapshot of web page. I tried using this code this.myWebView.setWebViewClient(new WebViewClient() { public void onPageFinished(WebView view,

[android-developers] Need your help to clarify CTS 2.2_r3 failure test case issues on Froyo.

2010-11-29 Thread JC
Hi all, I'm run default CTS test plan on emulator and my device but it always gets failure on those two test cases of CtsTextTestCases test package: (1).android.text.method.cts.BaseKeyListenerTest - testBackspace (2).android.text.method.cts.BaseKeyListenerTest - testPressKey Below are error log

[android-developers] Need some help understanding RelativeLayout

2010-05-22 Thread mat
Hi, I'm attempting to add four controls to a layout; label text seek radio I want the seek widget to occupy all the available screen space between the edittext control and the radio control. However if I give it the value android:layout_width=wrap_content only a small seek control is

Re: [android-developers] Need some help understanding RelativeLayout

2010-05-22 Thread TreKing
On Wed, May 19, 2010 at 5:06 PM, mat matthew-andr...@ntlworld.com wrote: I would have thought there would be a mechanism to occupy the free space between the text and radio controls dynamically. There is, it's called weight or layout_weight. Try setting it to 1 for the seek and to 0 for all

[android-developers] need some help with GUI

2009-11-20 Thread Breezy
What's the best way to handle this scenario? I've an app I'm working on that will have 3 different screens (layouts essentially). One will be a search box with a couple radio buttons and a search button. One will be a results list (I'm liking listview for this, sound good?). One will be the

[android-developers] Need some help with Search

2009-10-18 Thread Mariano Kamp
Hi, could you help me to understand search? Consider this simplified example: Let's say I have a contacts app with two activities: ShowContactActivity and ShowContactsListActivity. I think that both activities should be search enabled when the user types, but other than that

[android-developers] need some help regarding ksoap2

2009-07-21 Thread android.vinny
HI I need to develop the application consuming the ksoap2 web services .i have written php script in server i need to call that from server using ksoap2 in the xml form and should parse that response in the form of list . how can i do it i tried some example on ksoap i am not getting the

[android-developers] Need an help in Andoid.mak file

2009-06-16 Thread sesha giri
Hi What does the statements like the following means in Andoid.mak file LOCAL_MODULE:= libEGL LOCAl_SHARED_LIBRARIES += libcutils libutils libui libEGL I guess they are using the libraries but not generating. What is the statement to generate a .so file. Regards Giri Explore and

[android-developers] Need Major help on this PLEASE

2009-05-20 Thread androiddev123
Hi there, Keep getting this same error message in main.xml. ERROR Error: No resource found that matches the given name (at 'background' with value '@drawable/008'). The image is within the drawable file and therefore I don't understand what's wrong Any advice? Regards,

[android-developers] need some help with UI

2009-04-14 Thread Sheepz
Hey all, i hope this forum allowes this... i'm working on a very cool card game to be released soon for android for free! but since i want it to be a success i need some help - specifically with UI it's mostly done, but there are some small annyoances which i'm sure wont be too hard for a person

[android-developers] Need some help at testing an Android game

2009-02-14 Thread LuchoLaf
Hi from Argentina! we are a little team working on a tower defense- like game for Android. Our problem is that it's really complicated to get a real Android device here and we need it in order to see how the game performs. So this is a little help request for those who own a G1 or similar: here