[android-developers] Link between NetworkInterface and NetworkInfo

2010-11-01 Thread Neil
Is there a link between NetworkInterface and NetworkInfo? NetworkInterface tells the IP address, and NetworkInfo tells me the type, but how do I make the connection between IP address and type? Thanks Neil -- You received this message because you are subscribed to the Google Groups Android

[android-developers] putExtra and getExtra

2010-11-01 Thread Alok Upadhyay
i have trial.java as: public void onClick(View v) { switch (v.getId()) { case R.id.btnSequence: Intent intent1 = new Intent(); intent1.setClass(this,CommonActivity .class); String val1 = null; intent1.putExtra(Value, val1);//passing val1 to

[android-developers] Commands available for View Server class

2010-11-01 Thread manohar
hello, i am working on some framework. This framework code will communicate with ViewServer class, to get the various details about views. Till now we could able find few commands which viewServer class recieves and responds. But we dont have complete set of command. If any one knows, could you

[android-developers] Move background

2010-11-01 Thread Muhammad Ali
Hi, I am new for android game development and I am stuck in an issue that how can I move background for my game in Android. I have a tank which will destroy the enemies and move along the screen. But how can I create effect for the movement without background movement. I am not very good in

Re: [android-developers] Commands available for View Server class

2010-11-01 Thread Mark Murphy
There is no ViewServer class in the Android SDK. If you are modifying the Android open source code, a better list for your question will be one of these: http://source.android.com/community/index.html On Mon, Nov 1, 2010 at 3:09 AM, manohar manohar...@gmail.com wrote: hello, i am working on

[android-developers] Re: Prevent Rooted phones to access sqlite db and preferences

2010-11-01 Thread Dimitris
Encrypt your data when writing to DB and decrypt when you read. Might make ur app a tiny bit slower but you might be better off. On Oct 27, 6:25 pm, Byron Penner bapenner...@gmail.com wrote: In cases where u absolutly need to maintain secure data obfusticate the data before sasving to the db.

[android-developers] Re: Adventures with LVL

2010-11-01 Thread JonFHancock
It has been an OK experience for me. I had difficulty at first, and users would write me to complain, but I don't recall any public complaints. They were people with legit licenses who were getting refused due to network errors and such. The complaints were my own fault for using the LVL code

[android-developers] Re: How i can control the Screen On/Off Lock/Unlock in Donut( SDK 1.6)

2010-11-01 Thread krekar
I solved it. Jason, if you want know about that, contact me by e-mail. (swbon...@gamil.com) On 10월30일, 오전2시53분, Jason Van Anden jason.van.an...@gmail.com wrote: I am facing the same issue. Did you or does anyone else know the answer? J On Sun, Jan 3, 2010 at 9:43 PM, krekar

[android-developers] Re: 2.2.1 / N1 / USB Dropping

2010-11-01 Thread FrankG
Hi Pent, what kind of usb connections you can see in the connection manager ? Maybe it is adb + something different as mass storage ? The new 2.2 vold implemention uses a sysfs state file to detect usb connected or not. Maybe the content of this state file is not written correctly or something

Re: [android-developers] Re: Prevent Rooted phones to access sqlite db and preferences

2010-11-01 Thread Miguel Morales
Read the section titled: 'Replacement for copy protection' at: http://developer.android.com/guide/publishing/licensing.html On Mon, Nov 1, 2010 at 12:26 AM, Dimitris dnkou...@gmail.com wrote: Encrypt your data when writing to DB and decrypt when you read. Might make ur app a tiny bit slower but

[android-developers] Re: Collecting my Market installation statistics

2010-11-01 Thread deg
To be frank, your site would need to establish a REALLY strong reputation for trustworthiness before we could consider trusting it with our Market login credentials. They are too tightly coupled with customer, billing and credit card info. But, if I needed to login in to your webpage manually

[android-developers] Developing games for Galaxy Tab

2010-11-01 Thread limtc
Hi, I just tested Galaxy Tab AVD, and my games using SurfaceView looks suck. I would like to create drawable that is specified to 1024x600 resolution, but Galaxy Tab insists of using drawable-hdpi - which has resources specified for WVGA resolutions. How do I create a drawable folder that just

[android-developers] Read Calender and contact of android

2010-11-01 Thread Hotouch
Hello, I want to read the calender and contact of the android and looking for a code snipt if anyone can guide me. someone told me that i have to install calender fist into emulator and i tried but its not compatible :( and showing error and that this is not compatible. Please help!!! thanks

[android-developers] Re: Developing games for Galaxy Tab

2010-11-01 Thread Michael A.
Haven't looked at this yet (though I plan to), but isn't the 1024x600 a Large screen? You might be able to use drawable-large or drawable- large-hdpi. Regards, Michael A. On Nov 1, 9:56 am, limtc thyech...@gmail.com wrote: Hi, I just tested Galaxy Tab AVD, and my games using SurfaceView

[android-developers] Re: Developing games for Galaxy Tab

2010-11-01 Thread limtc
Wow, that's good suggestion. My initial test seems to indicate that drawable-large does not work, but drawable-large-hdpi works. I will do more test and let everybody know! On 11月1日, 下午5时21分, Michael A. michael.aki...@gmail.com wrote: Haven't looked at this yet (though I plan to), but isn't

[android-developers] EditText clipping in TableRow

2010-11-01 Thread freezy
Hi folks, I've spent quite some time on this and I can't wrap my fingers around it. Whatever I try, the EditText view in the TableRow is either clipped (attached screenshot), or, if I set shrinkColumns to either 0 or 1, the label text disappears (and the EditText view takes up the whole width).

[android-developers] 薛智超 想跟您聊天

2010-11-01 Thread 薛智超
我使用 Google Talk 已经有一段时间,我觉得您也不妨试试。我们可以使用它通过互联网免费拨打电话。您可通过此邀请函下载 Google Talk。试试吧! --- 薛智超希望通过 Google 的一些最炫的新产品与您保持更密切的联系。 如果您已经拥有 Gmail 或 Google Talk,请访问:

[android-developers] Mobile Application Development Survey - free gift

2010-11-01 Thread Monkey
I am developing a new mobile development platform and I am canvasing opinion on both features and the pricing model for this product. We would be most grateful for a few minutes of your time to complete this following questions. The whole process should take less than five minutes.

[android-developers] How to debug CursorIndexOutOfBoundsException with ListView?

2010-11-01 Thread Mariano Kamp
Hi, I occasionally get exceptions like this one here: android.database.CursorIndexOutOfBoundsException: Index 0 requested, with a size of 0 at android.database.AbstractCursor.checkPosition(AbstractCursor.java:580) at

[android-developers] Re: device fingerprinting

2010-11-01 Thread bagelboy
Google encourages you to offload your own checks to an external server and I am considering how to do that. I'd like to have more than one way to track installations. I totally agree that the documentation sucks donkeys. They say you should modify the code substantially to foil crackers but they

[android-developers] Checksum Java function in Android

2010-11-01 Thread Pent
A while ago I tried to work out how to checksum a function at runtime. As I remember, I failed due to some missing functionality of the class loader from vanilla java. Has anyone managed to do this ? Thanks, Pent p.s. it's intended as a new tool in the entertaining anti-crack game (please no

[android-developers] weird compiler warning

2010-11-01 Thread ping
Hey guys, i recognized that when i'm building my android project in eclipse i get a lot of warnings saying: warning: Ignoring InnerClasses attribute for an anonymous inner class that doesn't come with an associated EnclosingMethod attribute. (This class was probably produced by a broken

[android-developers] Listen/bind a hardwarebutton to a activity/event

2010-11-01 Thread Rijad Sacirovic
Hey there, this is kind of a wide question that I'll break down for you. In general I'm wondering if its is possible, if so then how, to bind/listen to a hardware-button to my application. * Is it possible to make a hardware-button start my app on shot/ long press? * Is it possible to

Re: [android-developers] weird compiler warning

2010-11-01 Thread Marcin Orlowski
I don't have any idea how to solve this. How can i get rid of this warning? Show your code, crystal ball is broken. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com

[android-developers] Over Riding Back Button Action

2010-11-01 Thread tanmay....@gmail.com
I have just overide my back button in my code like this @Override public boolean onKeyDown(int keyCode, KeyEvent event) { if (keyCode == KeyEvent.KEYCODE_BACK) { return true; } return super.onKeyDown(keyCode,

[android-developers] Re: putExtra and getExtra

2010-11-01 Thread tanmay....@gmail.com
Bundle bundle = getIntent().getExtras(); Now get the your desired value from the bundle String value=bundle.getString(Value); if(value!=null) { if(value.equals(Some Value1)) { //some stuff } if(value.equals(Some Value2)) { //some stuff } if(value.equals(Some Value3)) { //some stuff } } I

[android-developers] Will service be restarted with all unfinished intents that returned start status START_REDELIVER_INTENT?

2010-11-01 Thread Jonas Schwertfeger
Hi there, Suppose you have a download service that downloads files asynchronously. For each download intent received it will put the URL of the file to download and the start ID into a job queue and return START_REDELIVER_INTENT. A worker thread then processes that list and calls stopSelf with

[android-developers] Re: weird compiler warning

2010-11-01 Thread DanH
It's referring to the attributes inside the class file -- either the compiler screwed up or the class verifier is slightly broken. Since the virtual machine largely ignores the attributes, you can ignore the message. On Nov 1, 6:44 am, ping bernd.warm...@gmail.com wrote: Hey guys, i

[android-developers] Re: Developing games for Galaxy Tab

2010-11-01 Thread Michael A.
Are you using OS version 2.1. In principle (as I understand it), drawable-large should work based on the theory: http://developer.android.com/guide/topics/resources/providing-resources.html#AlternativeResources http://developer.android.com/guide/topics/resources/providing-resources.html#BestMatch

Re: [android-developers] web service access from net

2010-11-01 Thread Dalvinder Singh
It seems you just want to get the xml data from servers instead of local Assets folders. So the approach should be to deploy these xml resources on some server like Tomcat or JBoss etc. Then in your application you can make simple HTTP request to get these resources and use it in your application.

[android-developers] any information regarding printing on android

2010-11-01 Thread MG
hi all! do you have any idea on how to connect an android device to a printer? for example, i will create an application that will manually input the IP address of the printer. and then, a notification will pop up that i have successfully connected to the printer. how can i implement this on

[android-developers] Bezier curve has end points connecting

2010-11-01 Thread jb
Hi, I'm drawing a very simple bezier curve that looks like a ). The odd thing is that the beginning and ending points connect with a straight line. I'm new in doing this type of thing. Is this to be expected or not? Here's the code segment that defines the points, path and draws the curve:

[android-developers] Re: error code 5: database is locked

2010-11-01 Thread William Ferguson
I'm seeing the same thing. And to answer the questions: 1 - There is no other app using my db, though it is accessed from both my Activity and an IntentService within my app. Both of which needs write access. 2 - I closed the cursor every time. I cannot see any need for the entire DB to be

Re: [android-developers] Application Losing Connectivity after 30 minutes (on Wifi)

2010-11-01 Thread Alok Kulkarni
Thanks for sharing the info mark, i will try it out and post if there are any further issues. Regards, Alok. On Tue, Oct 26, 2010 at 1:03 PM, Mark Murphy mmur...@commonsware.com wrote: You may need a WakeLock and WifiLock, if the device is falling asleep. On Tue, Oct 26, 2010 at 3:28 AM, Alok

[android-developers] Google analytics install referrer problem

2010-11-01 Thread Alex Polyakov
I needed to track install information, so i used com.android.vending.INSTALL_REFERRER intent for google analytics: http://code.google.com/mobile/analytics/docs/android/ I have put that intent into manifest as following: receiver android:name=com.mycompany.MyReceiver android:exported=true

[android-developers] Re: Drag and Drop List Simple Example

2010-11-01 Thread ericharlow
I like those links too. Good Stuff. On Oct 31, 7:55 pm, Mathias Lin m...@mathiaslin.com wrote: Thanks for sharing. Can also look athttp://stackoverflow.com/questions/2909311/android-list-view-drag-and...http://github.com/commonsguy/cwac-touchlist for another example On Nov 1, 8:33 am,

[android-developers] Android intent filter for SMS and call?

2010-11-01 Thread draf...@gmail.com
I am trying to register my Activity so that it can be used by the Activity chooser/picker allowing a user to choose whether or not to select my application/Activity to complete what they are trying to do. I want to provide the option for the user to be able to select my application when they want

Re: [android-developers] image capture and get both the original image and a thumbnail

2010-11-01 Thread TreKing
On Wed, Oct 27, 2010 at 12:36 AM, niedhui nied...@gmail.com wrote: so is there an easy way to get both the thumbnail and the original picture ? Try this? Never used it, so I don't know how it works, but seems useful. http://developer.android.com/reference/android/media/ThumbnailUtils.html

Re: [android-developers] Bezier curve has end points connecting

2010-11-01 Thread Kostya Vasilyev
Take out path.close() -- Kostya 01.11.2010 17:06, jb пишет: Hi, I'm drawing a very simple bezier curve that looks like a ). The odd thing is that the beginning and ending points connect with a straight line. I'm new in doing this type of thing. Is this to be expected or not? Here's the

[android-developers] Re: how do i create a donate menu button

2010-11-01 Thread Raziel23x
So Something Along these Lines will work? private static final int MENU_DONATE = 0; /* Creates the menu items */ public boolean onCreateOptionsMenu(Menu menu) { menu.add(0, MENU_DONATE, 0, Home); return true; } /* Handles item selections */

[android-developers] Re: Adventures with LVL

2010-11-01 Thread PorkChop
I've had one user complain that it 'would be better' if he could play in airplane mode. That said, I shyed away from checking the licence every time to app is fired up. I check 2 hours after first run (this is because I am not entirely sure what would happen if the user copied to SD card and then

[android-developers] Re: Bezier curve has end points connecting

2010-11-01 Thread jb
Thank you. I knew it was something simple. jb On Nov 1, 8:01 am, Kostya Vasilyev kmans...@gmail.com wrote: Take out path.close() -- Kostya 01.11.2010 17:06, jb пишет: Hi, I'm drawing a very simple bezier curve that looks like a ).  The odd thing is that the beginning and ending

Re: [android-developers] Will service be restarted with all unfinished intents that returned start status START_REDELIVER_INTENT?

2010-11-01 Thread Dianne Hackborn
Yes,. On Mon, Nov 1, 2010 at 5:39 AM, Jonas Schwertfeger jschwertfe...@gmail.comwrote: Hi there, Suppose you have a download service that downloads files asynchronously. For each download intent received it will put the URL of the file to download and the start ID into a job queue and

[android-developers] Detect weather a phone is rooted or not

2010-11-01 Thread Tejas
Hi, I would like to find out in my application if the phone is rooted or not. Is there any API that tests this ? Regards, Tejas -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Crash report for ActivityThread.createThumbnailBitmap

2010-11-01 Thread webmonkey
I got a crash report in my Android Market Publisher console for android.app.ActivityThread.createThumbnailBitmap I thought that function was not used and the system should never call it, it not enabled in 2.3 is it? -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Listing fat-finger-tapped overlays from a MapActivity?

2010-11-01 Thread TreKing
On Fri, Oct 29, 2010 at 1:42 PM, Mike Reed waterrock...@gmail.com wrote: If I add to a list in the ItemizedOverlay.onTap for each item clicked (returning false to not handle), the list owner has no way to know when the list is complete (last onTap has been called). Who's the list owner? I

[android-developers] Android 2.2 and SIM Toolkit

2010-11-01 Thread Adail Horst
Hi Guys, Someone know how to make a Toolkit for SIM to access SIM menu and use multichip option on my droid (Nexus One) ? []s, Adail -- 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] How to debug CursorIndexOutOfBoundsException with ListView?

2010-11-01 Thread Romain Guy
This kind of error usually happens when there's a concurrency issue in the application. On Mon, Nov 1, 2010 at 4:02 AM, Mariano Kamp mariano.k...@gmail.com wrote: Hi, I occasionally get exceptions like this one here: android.database.CursorIndexOutOfBoundsException: Index 0 requested, with a

Re: [android-developers] Commands available for View Server class

2010-11-01 Thread Romain Guy
The ViewServer is not a public API and should NEVER be used as such. It also won't be enabled on production devices (phones sold in stores, for instance.) Do not rely on it. It's also not designed for real time interaction and can be very slow. The protocol can also change without warning in any

Re: [android-developers] Google Maps API hidden maps and opengl

2010-11-01 Thread TreKing
On Fri, Oct 29, 2010 at 6:00 PM, Adam Hammer adamhamm...@gmail.com wrote: I get an error java.lang.RuntimeException: stub at com.google.android.maps.MapView.init (Unknown Source) Is that really the entire error? Regardless, read the MapView documentation. It explains where and how the

[android-developers] Re: Adventures with LVL

2010-11-01 Thread Pent
(this is because I am not entirely sure what would happen if the user copied to SD card and then got a refund). Ah yes. I don't do any check at all till 26 hours has passed to avoid the refund problem. Pent -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: How can I create an aircraft-mounted-liked compass?

2010-11-01 Thread Maps.Huge.Info (Maps API Guru)
I'll bet it works a lot like electronic car compasses. The one I have in my truck (GMC) is fairly accurate but once in a great while it goes nuts. To recalibrate the thing the manual instructs to drive in a circle slowly. If it still doesn't work right, drive in a figure 8 slowly. Don't know why

[android-developers] Streaming audio from windows c++ music studio application to android java application

2010-11-01 Thread Paul Griffiths
Hi, im in the process of creating a great music studio application on windows pc. now I wish to stream live the audio output of my music studio acoss the net to my android device. Heres 2 screenshots of my music studio : http://img31.imageshack.us/img31/2363/99841251.png

[android-developers] Progress Dialog

2010-11-01 Thread piyush
--I am new to Android And i want to Show Two Progress Dialog one after another?? --First i want to show when my image is load from internet, when this process is done i have set A button on that Remote image. --When i click that button i want Dialog for second time..(on clicking button i have

[android-developers] Independent Wallpapers on Multiple Screens

2010-11-01 Thread jexsk
Could it be possible to make each screen have a different wallpaper while scrolling? I mean, taking as an example a case with three screens, it will be necessary to set a x3 screen width wallpaper to fit 1/3 on each screen, or directly setting different images for each screen... so the scrolling

[android-developers] Re: images in android

2010-11-01 Thread Aravind
You can have just one imageview and keep updating the view's image. public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); ImageView o1 = (ImageView) findViewById(R.id.image);

Re: [android-developers] Re: Storing data on the SD card in Froyo - files deleted when upgrading

2010-11-01 Thread dipti seni
*www.ksrista.com* http://www.ksrista.com/ *search your life partner* -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Unable to update packages with SDK Manager

2010-11-01 Thread Adam Sandler
Hello: I'm completely frustrated with the Android SDK Manager. I'm running Win 7 Home edition and have the SDK installed in it's own top level directory on my D:\ drive. When I run SDK Setup.exe from the command line (and I've even opened the prompt as an administrator), I get an error when

Re: [android-developers] button click

2010-11-01 Thread Jayu Sagar
Hi joy , what you can do is get all the text views in your activity by using the Findviewbyid. when clicked the button you can do get text from the First textView and Second textview and keep Toggling it :) hope it was informative. Jayu. On Fri, Oct 29, 2010 at 3:56 PM, nena joy

[android-developers] Android NDK - raw socket creation problem

2010-11-01 Thread Samy
I am creating a raw socket to sniff packets on android as below. sock_raw = socket(AF_INET , SOCK_RAW , IPPROTO_TCP); if(sock_raw 0) { fprintf(fs,Socket Error : %d %d\n,errno, EACCES); if( errno == EACCES )

[android-developers] Persisting preference data from onDialogClose in DialogPreference doesn't work

2010-11-01 Thread Martin Ström
In the API reference for the method onDialogClosed of DialogPreference it says Called when the dialog is dismissed and should be used to save data to the SharedPreferences. My problem is that nothing gets persisted when I call persistString from onDialogClose. I can listen to changes to my

[android-developers] New to Android - Can't add Platform

2010-11-01 Thread James Thomas
I am running into errors while setting up my environment using Eclipse Galileo. It appears to have loaded Eclipse and the SDK ok as I can see the Android Icon in the About Eclipse and the Android SDK and AVD Manager appear in the Window dropdown list. But when trying to add platforms in

[android-developers] Query Content Provider from non-Activity class?

2010-11-01 Thread Argus
I have set up the model part of my application similar to the MicroJobsDatabase file in the MicroJobs sample application. As I like how slick the structure is, I wanted to have all of my data in this file, including data queried from content providers. The way the MicroJobsDatabase class works

[android-developers] SSLContext.getInstance(SSL) throws java.security.NosuchAlgorithmException: SSLContext SSL implementation not found

2010-11-01 Thread gato chlr
Hi list, i want to implement a client for https, all in my localhost (in my apache, it is configured to ask authentication), with a resource https://localhost:443/resources/resource1.xml; the server works fine. I have a client for desktop, and it works fine, the resources are consumed using

[android-developers] Focus a key in on-screen keyboard

2010-11-01 Thread sjor
I wanna ask that how can i make a key in the virtual keyboard's user interface focused(orange lighted maybe)? Which attribute or function may i use for it while developing an on-screen keyboard? Waiting for your help. -- You received this message because you are subscribed to the Google Groups

[android-developers] use CSS to control the style of HTML in Android

2010-11-01 Thread Ellen
Hello, I want to know how to use CSS to control the style of HTML. it looks like anything defined in CSS does not apply to HTML. here is the mytest.html !DOCTYPE html PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http:// www.w3.org/TR/html4/loose.dtd html head title TEST PAGE /title link

[android-developers] Re: How can I create an aircraft-mounted-liked compass?

2010-11-01 Thread DanH
What do you tell the cop when he stops you? On Nov 1, 12:06 pm, Maps.Huge.Info (Maps API Guru) cor...@gmail.com wrote: I'll bet it works a lot like electronic car compasses. The one I have in my truck (GMC) is fairly accurate but once in a great while it goes nuts. To recalibrate the thing the

Re: [android-developers] use CSS to control the style of HTML in Android

2010-11-01 Thread Kumar Bibek
http://techdroid.kbeanie.com/2010/10/android-webview-javascript-and-css.html Hope that helps. On Mon, Nov 1, 2010 at 6:56 PM, Ellen jzs...@gmail.com wrote: Hello, I want to know how to use CSS to control the style of HTML. it looks like anything defined in CSS does not apply to HTML. here

[android-developers] Local HTML files displayable application

2010-11-01 Thread KeiAiAm
Hello guys Due to my little knowledge in Java programming, I've wondered if I'm able to display local html files in my application? (And when yes could you please give me a reference.) Best Regards KeiAiAm -- You received this message because you are subscribed to the Google Groups Android

[android-developers] can we move file from sd card to apllication ?

2010-11-01 Thread nikki
i am developing an application and i am new to android. i would like to know wheather i can import/move text file saved in sdcard of android phone into the database of application developing. i would like to know the code for doing this thing? -- You received this message because you are

[android-developers] How can i move cursor in on-screen keyboard with external keyboard?

2010-11-01 Thread sjor
I am working to make an on-screen keyboard which can be visitable via arrow(direction) keys of my external keyboard. I mean i wanna move left, right, up and down in the on-screen keyboard's keys on its UI with pressing arrow keys from my external(hardware) keyboard. The key that cursor is on

[android-developers] Menu in contacts

2010-11-01 Thread Евгений Григорьев
Hi all! When you click on picture on the left of any contact - there is a dialog, that shows some possible actions(like phone or write e-mail). Set of actions is different from context menu or option menu. Is it some standard widget, or is there any simple way to get such dialog for custom list

[android-developers] LVL advice in the Android Developer Blog

2010-11-01 Thread Zsolt Vasvari
Under the part Make your application temper-resistant Tim Bray advises: The most obvious mechanism is to use a lightweight hash function, such as CRC32, and build a hash of your application’s code. You can then compare this checksum with a known good value. You can find the path of your

[android-developers] CSS in Android

2010-11-01 Thread Ellen
I want to know how to use CSS to control the style of HTML. it looks like anything defined in CSS does not apply to HTML. here is the mytest.html !DOCTYPE html PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http:// www.w3.org/TR/html4/loose.dtd html head title TEST PAGE /title link type=text/css

[android-developers] interactive notification?

2010-11-01 Thread jakob
Is it possible to insert buttons into a notification? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Streaming Audio Support on Android

2010-11-01 Thread Nicholas Campion
I am looking for a bit of help understanding the implications of the 'Android Supported Media Formats'[1]. I see that the AAC formats are only supported for decoding when using 3GPP or MPEG-4 container and that there is no support for raw AAC. My question is this, I am working on a project which

[android-developers] drag and drop between layouts

2010-11-01 Thread Slim
I want to have a scrollview with several images and the ability to drop those images onto a layout beside the scrollview. I can drag and drop but only within the scrollview. I can't use that because the whole screen scrolls when the images scroll. I have tried implementing my own custom views

[android-developers] Cannot Get to My Application in Market as a Developer

2010-11-01 Thread claytan...@sightlyinc.com
Hey all, Something really strange happened today and I could really use some help figuring it out. I believe its related to Google's SSO infrastructure, and I don't really know how to contact Google to get my application rescued. I have a google apps account I used to create the application, its

[android-developers] I want to distinguish why onPause() is called

2010-11-01 Thread Chungha Yun
Hi, all. I really want to know how to distinguish what brings onPause() between pressing Home Key or being hid by another activity for a moment. I read the SDK document about activity life-cycle and found the following sentence. An example when

[android-developers] Re: One process, two live Application objects?

2010-11-01 Thread Tim in Boulder
On Oct 31, 12:17 pm, Dianne Hackborn hack...@android.com wrote: On Sun, Oct 31, 2010 at 11:12 AM, Mark Murphy mmur...@commonsware.comwrote: On Sun, Oct 31, 2010 at 2:07 PM, Dianne Hackborn hack...@android.com wrote: As far as using Application to clean up statics -- this simply doesn't

[android-developers] How to take an image using ACTION_IMAGE_CAPTURE, and not having it appear in the gallery

2010-11-01 Thread Anders Kjærgaard Hansen
Hi all I am writing an application that uses the built-in camera activity for taking pictures and sending them to a server along with some other data. Since our users will use this application in their jobs, I would like the images taken, not to be available in the general gallery on the phone.

[android-developers] intent filter/image

2010-11-01 Thread meakin
Hello, I'm developing a game based on the images. I would like when you select an image in the gallery, my application appears in the list complete action using. and when I select my application, it loads the image. My question is in two stages: - In the AndroidManifest.xml, I did: ...

[android-developers] youtube player app

2010-11-01 Thread Hobbes
hi , developing a simple youtube player app (for fun). since flash is supported, it is possible to develop a player , by hosting javascript in app as described in http://code.google.com/apis/youtube/js_api_reference.html ? thanks -hobbes -- You received this message because you are subscribed

Re: [android-developers] How to use bringchildtofront in List

2010-11-01 Thread TreKing
On Sat, Oct 30, 2010 at 11:55 AM, Dev Android devandroid1...@gmail.comwrote: Please suggest me how to use bringchildtofront in the listview of an activity. Please explain what you're trying to do.

[android-developers] Enhancing text input for all apps

2010-11-01 Thread v6ak
Hello. Is it possible to add e.g. an menu option for text inputs in all apps? Vít Šesták AKA v6ak -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from

[android-developers] How to XOR pixel values with Canvas

2010-11-01 Thread monstermunch
Hi, I have a Bitmap object called A and a Bitmap object called B. I want to produce a Bitmap object C that is produced by XORing the pixels values from A against the pixel values from B. Specifically, the integer pixel values should be combined using bitwise XOR. The reason I want this is when

[android-developers] glTexImage2D is too slow

2010-11-01 Thread 袁堂夫
Hi,how are you? We use Opengl 2.0 to develop a video programme on android with nexus one. We find that the fuction glTexImage2D is too slow,but we write a shader programme accord to the sample GL2JNILib. I guess the GPU is not working, why it happened? how to fix it? help me,please.Thank you very

[android-developers] Is it possible to use Window Media Service to Streaming Video on demand to Android?

2010-11-01 Thread Oattie
I am try to streaming video on demand from Window Media Service ( Window Server 2008 R2 ) to Android mobile. I searched for a while but I can not find the solution.. Is it possible? Any help would be appreciate Thanks -- You received this message because you are subscribed to the Google Groups

[android-developers] make Surface View scrollable

2010-11-01 Thread UniPassau
Hallo. In my project there are robots which explore an unknown area and this should be shown in my android application as a map. I used a Surface View and it works well but I have one problem, if the map gets larger then the display I cannot scroll the Surface View to see the whole map. Has

[android-developers] how to use Opengl 2.0 on android?

2010-11-01 Thread 袁堂夫
how to do with the framebuffer and renderbuffer? when we develop on iphone the function presentRenderbuffe is working.but on android ,how to display the renderbuffer? (![context presentRenderbuffer:GL_RENDERBUFFER]) -- You received this message because you are subscribed to the Google

[android-developers] android sdk

2010-11-01 Thread sunitha anandan
http://123maza.com/35/picture782/ -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: Java and Android phones?

2010-11-01 Thread Carthaigh
The Dalvik JVM is not Java and the Dalvik byte code is not the same as Java byte code. Are you trying to deploy native Java apps to the phone? Check out the google developer site or just google Dalvik Java lawsuit or Dalvik is not Java for some articles on the differences and how Dalvik came

[android-developers] Apps interaction

2010-11-01 Thread Fabio GRANDE
Hi all. I've seen a beta version of Navigator from Google. Since I've read some Android's book, I know about intents and actions. I'm wondering if there's a way to know, more generally, how to use a particular application from others. For instance, with Navigator I would add my own Point of

[android-developers] Problem downloading files

2010-11-01 Thread Sakubo
Since I installed someapp (don't know which app did this) everytime I try to download an MKV file on the default web browser it changes the extension to TXT how can I fix this? thanks in advance. Using: Xperia 10, Android OS 1.6 -- You received this message because you are subscribed to the

[android-developers] Bluetooth Problem

2010-11-01 Thread Benni
Hi all, I have got a problem. I wrote a Bluetooth app for J2me. It uses btl2cap and the UUID btl2cap:// localhost:A55665EE9F9146109085C2055C888B39 How to use this UUID in Android? Some code examples would be nice. Benni -- You received this message because you are subscribed to the Google

[android-developers] [Feedback] Android Development Service: Mobile Application CMS

2010-11-01 Thread Sascha
I am an Android and iPhone developer myself and frequently had to include some dynamically loaded content into different apps. Content like a tip of the day, store locations of a retail chain, cocktail recipes etc. I think this is always way too much effort. I either have to create a small web

[android-developers] help with Handler class to update UI

2010-11-01 Thread QueryMan
Hi Everyone, I am hoping you can help me: I need to update my ui for an android app and I'm trying to use the Handler class to do it, using http://developer.android.com/resources/articles/timed-ui-updates.html and the android developer resources Common Task for using Handlers as guides.

[android-developers] Hourglass

2010-11-01 Thread albertsmus
How can i display an hourglass while i try to load a new activity; Thanks for help -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send

[android-developers] Problems with intent filters

2010-11-01 Thread Eros Pedrini
Dear all, probably my problem is really silly, but I already spent two days without any results :( I'm writing a client application for an Italian social network (Meemi) and I'd like to give the possibility to users to share their calendar events via my client. I noticed on my device (HTC Desire)

[android-developers] Playing default ringtone with SoundPool or MediaPlayer

2010-11-01 Thread Kyle
Apologies in advance for asking a question I should be able to figure out, but I've been banging my head for hours on this and have obviously got crossed wires in my brain. How do I get the default ringtone to play? I've tried using SoundPool (preferred method) and MediaPlayer to play it but I'm

  1   2   3   >