[android-beginners] Re: Map API Demo

2010-06-15 Thread Rahul Garg
yes I did that. On Jun 15, 10:03 am, Saket Srivastav saketsrivasta...@gmail.com wrote: did you generate your google map api and provided the neccessary permissions in your manifest file?   Regards Saket Srivastav On Mon, Jun 14, 2010 at 5:48 AM, Rahul Garg rahul.lnm...@gmail.com wrote:

[android-beginners] App Inventor

2010-06-15 Thread TallGirl
Has anyone used this? I know Google has taken it down until the official launch in second half of 2010 (which is coming up, btw), but was curious if anyone had used it or downloaded it before it was removed from Google? -- You received this message because you are subscribed to the Google Groups

Re: [android-beginners] How might I do this (HorizontalScrollView question)?

2010-06-15 Thread alvin
Michael Dorin bsddo...@gmail.com wrote: I have for screens/layouts I would like the user to be able to slide between using a horizontal scroll view. Each screen has different information and controls for the user. I want each of the layouts to occupy the whole screen and the user slides

[android-beginners] Re: My first post -- ArrayAdapter question

2010-06-15 Thread Clover
Hi, You notice that the ArrayAdapter will have to populate a view for each row of a list view, thus you must provide it a layout for the row, you can either specify a layout of your own (R.layout.row) or just use the framework's built in layout (android.R.layout...). You can find an example in

Re: [android-beginners] ListView

2010-06-15 Thread Nam Ngo
Hi, From my point of view, you may want to try 1. GridView 2. Expanable list view 3. ListView with each row is a Gallery. That should serve your purpose with simple steps. Regards, Nam Because you may not want a scroll bar in the horizontal list On Tue, 2010-06-08 at 12:24 -0700, Sandy

Re: [android-beginners] Animation tutorial

2010-06-15 Thread Marc Young
There is a free app in the marketplace called Animation Demo and it gives you a visual demo of how and what the various animation parameters work. Not sure if that will help you at all but it is a good starting point. -- Sent from my non-fruity robot device. On Mon, Jun 14, 2010 at 6:36 PM,

[android-beginners] How do I auto-generate code from xml like Android does it?

2010-06-15 Thread drozzy
Hey guys, I would really like to achieve what Android is currently doing for it's resources: auto-generating class with member variables from the xml (or json) files. I would like to have an text or xml file of items, with ids, names, values and would like to generate Java code from it (in

[android-beginners] shutdown / reboot the android device

2010-06-15 Thread bangaram
Hi all, Could you please give me an idea about to implement reboot/shutdown the device through code. I am using Android 2.1 open source sdk (API Level 7). When i am sending a broadcast with ACTION_REBOOT, i am getting a SecurityException : Permission Denial : pid: xxx uid: xxx. I have

Re: [android-beginners] How might I do this (HorizontalScrollView question)?

2010-06-15 Thread alvin
Michael Dorin bsddo...@gmail.com wrote: I have for screens/layouts I would like the user to be able to slide between using a horizontal scroll view. Each screen has different information and controls for the user. I want each of the layouts to occupy the whole screen and the user slides

Re: [android-beginners] Incorporate a JavaScript to download from the app that creates a list of downloads from URL's...

2010-06-15 Thread Nam Ngo
Hi, I suppose you can do the parsing by yourself, so I will focus on the clickable items list, when you parse the java script, you have already had a list of item, all you need to do is to use the item as a data source for the ListView using either BaseAdapter or other Adapters, you can take a

Re: [android-beginners] Tutorial APK files

2010-06-15 Thread Nam Ngo
Hi, According to my knowledge, We have 2 types of Android app, 1. System app: this locate in /system/app folder of Android phone 2. Normal app: this locate in /data/app folder of Android phone We also have 2 ways to install app on Android phone: 1. using adb push it into /system/app, it will be

Re: [android-beginners] My first post -- ArrayAdapter question

2010-06-15 Thread Nam Ngo
Hi, You notice that the ArrayAdapter will have to populate a view for each row of a list view, thus you must provide it a layout for the row, you can either specify a layout of your own (R.layout.row) or just use the framework's built in layout (android.R.layout...). You can find an example in

Re: [android-beginners] Tables

2010-06-15 Thread Nam Ngo
Hi, I assume that you use SQLiteDatabase, there is a firefox plugin known as SQlite Manager that can query and update the database with GUI. Hope this help :P On Mon, 2010-06-07 at 22:11 -0500, Kevin Brooks wrote: Is there a tool I can use to look at the rows in my table to make sure all of

[android-beginners] Re: Array adapter - ListView [databasing?]

2010-06-15 Thread Moss
The best and most fastest memory saving way is to use a CorsorAdapter as the adapter used by your ListView. So the things you should take into account are: * ContentProvider * CursorAdapter * ListView I made an app that takes an special RSS feed and handles it using those classes, hace a look

Re: [android-beginners] ListView

2010-06-15 Thread Nam Ngo
Hi, I should also note that there are just many ways to implements the layout you specify, you can also try other methods, such as: a row of list view is a scroll view with dynamically populated LI in it (by code) Regards, Nam PS: I will post another method if I can figure out more, contact me

[android-beginners] RTSP Video packet loss ratio, jitter and delay

2010-06-15 Thread George
I am streaming an rtsp video to Android. How could I calculate network metrics like packet loss ratio, jitter or network delay? -- You received this message because you are subscribed to the Google Groups Android Beginners group. NEW! Try asking and tagging your question on Stack Overflow at

[android-beginners] Eclipse New Android Project dialog

2010-06-15 Thread Kent Loobey
I am building Android apps on a laptop running Ubuntu 10.04 using Eclipse and the New Android Project is so long that the Build Target listbox is scrunched up so that you can't read the available entries. There is enough blank space between the Min SDK Version: textbox and the button row that

Re: [android-beginners] Re: Map API Demo

2010-06-15 Thread Saket Srivastav
could you post the code snippets because i have personally executed the map view tutorial from android developer site and it has worked. Regards Saket Srivastav On Tue, Jun 15, 2010 at 2:01 AM, Rahul Garg rahul.lnm...@gmail.com wrote: yes I did that. On Jun 15, 10:03 am, Saket Srivastav

[android-beginners] File Browsing or Customisation Activities

2010-06-15 Thread redneon
I'm working on a simple Android app to teach myself Android development before I tackle something larger. It's just a small app that allows you to change wallpaper and ringtone settings (and maybe more). I know it's quite pointless but, as I said, it's just an educational project. So far,

[android-beginners] fetch from MediaStore for given path

2010-06-15 Thread manigault
How can i fetch all records in MediaStore for given directory. There is method MediaStore.Audio.Media.getContentUriForPath(String path) but it doesn't construct the uri correctly when i call it with path to dir i want to scan. Thanks . -- You received this message because you are subscribed to

[android-beginners] iPad iMac 360 Degree Stand

2010-06-15 Thread Rocky
LUXA2 (Thermaltsrcake) already had this product on display at CES in January. It's basically a remarketed version of the stand they created for the Kindle, which is really a big version of the one for the iPhone. Read more : http://www.onechap.com/news/ipad-stand.html -- You received this

Re: [android-beginners] Re: ContentProvider to Spinner results in blank, not empty, list

2010-06-15 Thread Raymond C. Rodgers
On 6/14/2010 5:01 PM, Kyaw Kyaw Win wrote: I searched it again on the web. According to this post http:// groups.google.com/group/android-beginners/browse_thread/thread/ 36454669a1e40172, you need to change the line int [] i = {R.id.myspinner}; TO int[] i = new int[] { android.R.id.text1

[android-beginners] Re: How do I auto-generate code from xml like Android does it?

2010-06-15 Thread Zigurd
It depends on what your aim is. If you want to make instances of subclasses of views and layouts, you can do that my naming them in layout files. If you want something more general purpose, try JAXB. Or you can roll your own with the XML parser in Android, and reflection. On Jun 3, 11:09 am,

Re: [android-beginners] shutdown / reboot the android device

2010-06-15 Thread Justin Anderson
I don't an SDK application can do this. AFAIK you need to have your application signed by Google to do something like this... but, good luck getting them to do that for you... -- There are only 10 types of people in the

Re: [android-beginners] shutdown / reboot the android device

2010-06-15 Thread Daniel Drummond
On 15 June 2010 16:58, Justin Anderson janderson@gmail.com wrote: I don't an SDK application can do this.  AFAIK you need to have your application signed by Google to do something like this... but, good luck getting them to do that for you...

[android-beginners] New to Android

2010-06-15 Thread Aaron
Trying to get my first android app up and running. It's a basic GCF calculator, but I can't get it to run. Can anyone help me out? package com.example.GCF; import java.util.Arrays; import android.app.Activity; import android.os.Bundle; import android.view.View; import

Re: [android-beginners] New to Android

2010-06-15 Thread YuviDroid
At this point of the code A and B are null: iA = Integer.parseInt(A.trim()); iB = Integer.parseInt(B.trim()); The computation part should be in your onClick method. On Tue, Jun 15, 2010 at 6:30 PM, Aaron amd2...@gmail.com wrote: Trying to get my first android app up and running. It's a

[android-beginners] Re: New to Android

2010-06-15 Thread Aaron
Thanks, fixed that, but am still unable to get the program to actually display the resulting calculation upon clicking the button. Here's my main.xml file if it helps: ?xml version=1.0 encoding=utf-8? RelativeLayout xmlns:android=http://schemas.android.com/apk/res/ android

Re: [android-beginners] Eclipse New Android Project dialog

2010-06-15 Thread Xavier Ducrohet
Update to 0.9.7 we fixed the issue (the content will scroll if your screen resolution is to low). xav On Sun, Jun 6, 2010 at 12:11 PM, Kent Loobey k...@uoregon.edu wrote: I am building Android apps on a laptop running Ubuntu 10.04 using Eclipse and the New Android Project is so long that the

[android-beginners] Re: New to Android

2010-06-15 Thread Aaron
Nevermind, moved my updateDisplay(); line to within the onClick portion. Now everything is running fine, well as intended that is :) On Jun 15, 10:04 am, Aaron amd2...@gmail.com wrote: Thanks, fixed that, but am still unable to get the program to actually display the resulting calculation upon

[android-beginners] What to use to play OTA, RTTL and RTX media formats in android

2010-06-15 Thread Carl Hernandez
Does anybody know what can I use to play OTA, RTTL and RTX audio formats? From the link below http://developer.android.com/guide/appendix/media-formats.html it is supported by android but it wouldn't play using Media Player. Do you know how this was done? Thanks in advance. -- You received