[android-beginners] Re: Samsung I7500 ADB connection problem

2009-07-07 Thread mitsus
OK i know. On Jun 26, 11:53 am, jz0o0z floresje...@gmail.com wrote: I had the same problem until I realizedSamsunguses their own adb. You should be able to get the drivers and correct adb from the person that sent you the device. --~--~-~--~~~---~--~~ You

[android-beginners] Re: Adding a view to a viewgroup

2009-07-07 Thread Jack Ha
Your Court.onDraw() function will not get called by default for efficiency. You need to call setWillNotDraw(false) to enable it. -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・ stick together The views, opinions and statements in this email are those of the author solely in their

[android-beginners] Re: ItemizedOverlay

2009-07-07 Thread MrChaz
You'll need to post at least some of your code so that we can see what you're doing On Jul 5, 8:56 pm, Arvind arvindis...@gmail.com wrote: Hello to all.. After many unsuccesful attempts on ItemizedOverlay...the sample code provided by google Im here begging for help... Ive obtained

[android-beginners] Re: connection via adb

2009-07-07 Thread George Francis
Sorry about this - I found the problem. Regards, On Mon, Jul 6, 2009 at 3:34 PM, blackfrancis gfranc...@gmail.com wrote: Hello, I see posts about this scattered everywhere, so I apologise that this is somewhat travelled ground, but I haven't been able to find categorical answers to my

[android-beginners] GUI test tool/framework for Android?

2009-07-07 Thread Yasser
Hi All, I need to interact with my Android application through its GUI in order to test it. Is there any tool/framework available which can be used to perform various user actions on the UI elements/controls like a button click, read/write some text into a textbox etc.? There is an Android

[android-beginners] GUI test tool/framework for Android?

2009-07-07 Thread Yasser
I need to interact with my Android application through its GUI in order to test it. Is there any tool/framework available which can be used to perform various user actions on the UI elements/controls like a button click, read/write some text into a textbox etc.? There is an Android

[android-beginners] connection via adb

2009-07-07 Thread blackfrancis
Hello, I see posts about this scattered everywhere, so I apologise that this is somewhat travelled ground, but I haven't been able to find categorical answers to my questions. I bought a G1 recently and downloaded the Android SDK. I have a Mac and a PC, and I installed the SDK for each. When I

[android-beginners] Android 1.5 - getNeighboringCellInfo() always returns 0 neighboring cells

2009-07-07 Thread kevink
Has anyone been able to retrieve the neighbor cell information using a G1 or ADP phone? I'm using android-sdk-linux_x86-1.5_r2 and compiling against API level 3 (Android 1.5). The application builds correctly but every time I request the neighboring cells as listed below, it returns a list of 0

[android-beginners] ListView: Default highlight the item

2009-07-07 Thread pdesai
Hello I am using ListView in my application. When My application gets launched, it displays Listview with some items in the list. I want the first item to be highlighted by default without any user action. How can i do that ? I tried listview.setSelection(0) method but it is not actually

[android-beginners] Updating items in ListView

2009-07-07 Thread doep
Hi all! I have a ListView (to be more exact I have a ListActivity) and the list receives it's info from a remote source in a separate thread. The list first just receive a list of integers and then I'd like to send separate requests for the list items data that are visible. So, I guess I have 2

[android-beginners] MapView drag delay

2009-07-07 Thread wallink
Hello, I have a question regarding the mapview and it's drag delay! At least on the emulator, when you drag the map around in a MapView it will lag for a few pixels before it starts to move. I'm guessing this is because it need some a initial calculations or something, but I wonder if you KNOW

[android-beginners] Problem on animation

2009-07-07 Thread Misra Ashish-QNK648
Hi All, I am working on Animation but really don't know how to modify Somefile.xml file in Res directory. More explicitly I have a somefile.xml in my Res directory and I want to Modify it at runtime. How can I do it. Code wise: nGame = (Button)findViewById(R.id.New_Game);

[android-beginners] Images are not saved properly

2009-07-07 Thread keerthi kumara
Hi i need help.i have created a camera application using android sdk 1.5.it works like this when open the application you have to click a button named click .When you click it camera will open and under the camera preview(another layer) thier is an button called Take Pictuer. When you click

[android-beginners] DDMS telephony actions on real connected device?

2009-07-07 Thread jrgraf...@googlemail.com
Is this possible? The actions seem greyed out both in eclipse and in the stand alone DDMS debugger --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group. To post to this group, send email to

[android-beginners] Unable to initialize Repo client

2009-07-07 Thread Chandrashekhara CP
Hello We have some problem to initialize the repo client. I have downloaded the repo script and made it executable. After running the Repo init, it repeatedly asks to enter the name and email address. Please let me know if I am missing to do something else before running repo init. Thanks in

[android-beginners] Re: File operations

2009-07-07 Thread dhuli murali
hi i am not understnding this code.can anyone help me and explain me this code .thank u /* Create an Intent to start * MySecondActivity. */ Intent i = *new* Intent( StartingSubactivities.*this*,SecondActivity.*class* *)*; /* Send intent to the OS to make * * it aware that we want to start * *

[android-beginners] Android 1.5 - getNeighboringCellInfo() always returns 0 neighboring cells

2009-07-07 Thread kevink
Hi, I've been trying to retrieve the neighboring cell information using my ADP phone, but when I call getNeighboringCellInfo() it always returns list of size 0. I'm using the android-sdk-linux_x86-1.5_r2 and compiling for a 1.5 device(API Level 3). Has anyone else seen this, or am I doing

[android-beginners] Is it possible to include the cupcake plugins jar into my app?

2009-07-07 Thread Zied Hamdi
Hi All, I'm developing an app for the google challenge, my problem is that I'm relying on the MapView which is still not on any market device (I think). Seen that to win, people must vote for you, no one will be able to install the app on his phone. Is the MapVien including native calls?

[android-beginners] Re: problem starting emulator from command line

2009-07-07 Thread lu XIN
hello, i am a beginner too,and I have the same anonying problem as you .my enviroment is 32-vista and android sdk 1.5 r1. if you get some solution,please inform me .thank you very much . 2009/7/6 greg sep...@eduneer.com The reason the android emulator starting from within Eclipse did not

[android-beginners] Re: ListView: Default highlight the item

2009-07-07 Thread Romain Guy
Launch the application using the trackball :) On Mon, Jul 6, 2009 at 10:38 AM, pdesaipink...@gmail.com wrote: Hello I am using ListView in my application. When My application gets launched, it displays Listview with some items in the list. I want the first item to be highlighted by default

[android-beginners] Re: No output on the eclipse console

2009-07-07 Thread kartheek karthikeya
In eclipse you can see console output by Using util.log log options are four types debug,error,info,... if you want to switch to the log outputs in eclipse windows-show view-other-android-logcat now you can log outputs --~--~-~--~~~---~--~~ You received this

[android-beginners] Re: No output on the eclipse console

2009-07-07 Thread chinna Durai
Thanks Katheek. It worked. -chinna On Tue, Jul 7, 2009 at 8:39 AM, kartheek karthikeya kartheek@gmail.comwrote: In eclipse you can see console output by Using util.log log options are four types debug,error,info,... if you want to switch to the log outputs in eclipse windows-show

[android-beginners] Re: GUI test tool/framework for Android?

2009-07-07 Thread Gabriel Branch
If you are using eclipse to dev then you know the emulator is all part of what you are looking for. If you are not using eclipse then you should probably start using it. Go to http://eclipsesource.com/en/yoxos/yoxos-ondemand/ and roll your own eclipse install with all the android, svn, jUnit

[android-beginners] Re: Adding a view to a viewgroup

2009-07-07 Thread Carl
Excellent, thanks. On 7 July, 17:17, Jack Ha jack...@t-mobile.com wrote: Your Court.onDraw() function will not get called by default for efficiency. You need to call setWillNotDraw(false) to enable it. -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・ stick together The views,

[android-beginners] Re: GUI test tool/framework for Android?

2009-07-07 Thread Yasser
I am running my app on the android emulator. I am looking for a tool through which I can programatically perform (simulate) user actions on the app's GUI. A tool like WinRunner or QTE (may be not that advanced) which can interact with the GUI. Actually I need this to develop test automation for

[android-beginners] Re: Adding a view to a viewgroup

2009-07-07 Thread Romain Guy
Also, you should not call this.layout(0, 0, width, height) from onMeasure(), it will be done for you. On Tue, Jul 7, 2009 at 3:33 PM, Carlcarl...@gmail.com wrote: Excellent, thanks. On 7 July, 17:17, Jack Ha jack...@t-mobile.com wrote: Your Court.onDraw() function will not get called by

[android-beginners] Re: GUI test tool/framework for Android?

2009-07-07 Thread Mark Murphy
Yasser wrote: I am running my app on the android emulator. I am looking for a tool through which I can programatically perform (simulate) user actions on the app's GUI. A tool like WinRunner or QTE (may be not that advanced) which can interact with the GUI. Actually I need this to develop

[android-beginners] Re: GUI test tool/framework for Android?

2009-07-07 Thread Romain Guy
There's a TouchUtils class to simulate taps, drags, etc. On Tue, Jul 7, 2009 at 3:49 PM, Mark Murphymmur...@commonsware.com wrote: Yasser wrote: I am running my app on the android emulator. I am looking for a tool through which I can programatically perform (simulate) user actions on the

[android-beginners] Re: GUI test tool/framework for Android?

2009-07-07 Thread Mark Murphy
Romain Guy wrote: There's a TouchUtils class to simulate taps, drags, etc. Wow, I missed that. Thanks! Out of curiosity, any ideas why the touch ones were pulled out into a separate class, as opposed to sendKeys() and kin? -- Mark Murphy (a Commons Guy) http://commonsware.com |

[android-beginners] Re: GUI test tool/framework for Android?

2009-07-07 Thread Romain Guy
It was pre-1.0, we were tired, we were busy... so I don't know :) On Tue, Jul 7, 2009 at 3:53 PM, Mark Murphymmur...@commonsware.com wrote: Romain Guy wrote: There's a TouchUtils class to simulate taps, drags, etc. Wow, I missed that. Thanks! Out of curiosity, any ideas why the touch ones

[android-beginners] Re: GUI test tool/framework for Android?

2009-07-07 Thread Yasser
Thanks Mark. I will look more into the instrumentation framework. Questions: - Can I use this framework for UI operations without having access to the app source code? - So it means there is no way in Android for querying controls and then performing actions on them? Thanks Yasser On Jul 7,

[android-beginners] Re: GUI test tool/framework for Android?

2009-07-07 Thread Mark Murphy
Yasser wrote: - Can I use this framework for UI operations without having access to the app source code? Doubtful. I think you have to be signed with the same digital signature, for example, for security reasons. - So it means there is no way in Android for querying controls and then

[android-beginners] FreshBrain

2009-07-07 Thread Yusuf T. Mobile
Hello dear Android Beginners. There is a wonderful Android tutorial over at FreshBrain at https://freshbrain.org/group/building-applications-g1-mobile-phone-learning-path . Disclaimer: T-Mobile played a role in making it available, thus its wonderfulness. FreshBrain describes itself as The

[android-beginners] Re: problem starting emulator from command line

2009-07-07 Thread greg
The reason I was having a problem (re)starting the emulator from the command line was that I did not first kill an already running emulator (by clicking on the 'x' in the top right of the emulator window). I'm able to reliably start the emulator now. On Jul 7, 8:25 am, lu XIN

[android-beginners] Problem with Displaying Web Server's Response (Text) in Android

2009-07-07 Thread Persona
Hello, the following code uses POST method to communicate with the Web Server, and the response is displayed in the console (not parsed in a Servlet, etc). When compiled as a java application, the program works as expected returning the response as html text. My aim is to have an Android app

[android-beginners] Re: Problem with Displaying Web Server's Response (Text) in Android

2009-07-07 Thread Mark Murphy
Persona wrote: Hello, the following code uses POST method to communicate with the Web Server, and the response is displayed in the console (not parsed in a Servlet, etc). When compiled as a java application, the program works as expected returning the response as html text. My aim is to

[android-beginners] Moving data from Phone to PC

2009-07-07 Thread garthups...@gmail.com
I am developing an Android application that collects accelerometer sensor readings. I need to somehow get this data from the phone to a desktop computer. I want to have a Send button that sends the data. The closest I have come is that if put the data in the image Content Provider and say it's

[android-beginners] Traffic filtering options

2009-07-07 Thread Bryan Ashby
I am looking for information on traffic filtering options on the Android platform. That is, filtering Internet traffic such as HTTP, and IM. For example, on the desktop this can be achieved via a device driver such as NDIS, Windows Filtering Platform (WFP) or a Layered Service Provider (LSP).

[android-beginners] Re: Traffic filtering options

2009-07-07 Thread Mark Murphy
Bryan Ashby wrote: I am looking for information on traffic filtering options on the Android platform. That is, filtering Internet traffic such as HTTP, and IM. For example, on the desktop this can be achieved via a device driver such as NDIS, Windows Filtering Platform (WFP) or a Layered

[android-beginners] Re: Moving data from Phone to PC

2009-07-07 Thread Mark Murphy
garthups...@gmail.com wrote: I am developing an Android application that collects accelerometer sensor readings. I need to somehow get this data from the phone to a desktop computer. I want to have a Send button that sends the data. The closest I have come is that if put the data in the

[android-beginners] Re: Widgets User input.

2009-07-07 Thread nikki
this is news to me as well~ but I then think of the fact I found that the google search widget on Home screen seems not an appwidget so maybe we can just make our widget not an appwidget if we need some user input? On Jul 6, 7:30 pm, wonglik wag...@gmail.com wrote: Argh! I thought so but I

[android-beginners] Re: Widgets User input.

2009-07-07 Thread nikki
I see~ Thanks for this info! :) On Jul 8, 11:07 am, Romain Guy romain...@google.com wrote: The Search widget is indeed not an app widget but it's built in Home itself. You cannot create your own non-app widgets with the standard Home application (for security reasons.) On Tue, Jul 7,

[android-beginners] Re: GUI test tool/framework for Android?

2009-07-07 Thread kartheek karthikeya
android - pistron is tool or frame work for uint testing for user clicks and all that. On 7/8/09, Mark Murphy mmur...@commonsware.com wrote: Yasser wrote: - Can I use this framework for UI operations without having access to the app source code? Doubtful. I think you have to be signed with

[android-beginners] Re: android.location requestLocationUpdates only calls onLocationChanged once

2009-07-07 Thread kartheek karthikeya
no it will chanhe , yo can see by by loading kml file into ddms and press play button in bellow the kml table.yo can the locaton was moving and your location chnged method is called for testing hat put log in on location changed On 6/27/09, Andrew Gee webspot.co...@gmail.com wrote: Hi, I've

[android-beginners] Re: Widgets User input.

2009-07-07 Thread Romain Guy
The Search widget is indeed not an app widget but it's built in Home itself. You cannot create your own non-app widgets with the standard Home application (for security reasons.) On Tue, Jul 7, 2009 at 8:03 PM, nikkinikki_...@pegatroncorp.com wrote: this is news to me as well~ but I then

[android-beginners] How to see paid apps in Market

2009-07-07 Thread Koala Yeung
I cannot see any paid apps in Market (on my phone). I can only install free apps there. Is this a setting problem? Or is this other problem I can solve? Please help. Koala Yeung --~--~-~--~~~---~--~~ You received this message because you are subscribed to the