Re: [android-developers] Better UI Designing

2012-02-03 Thread Brad Stintson
Thank you TreKing, I found your link really useful. But would it help me design apps built for android 2.1+? Regards, Brad Stintson On Tue, Jan 31, 2012 at 8:32 PM, TreKing wrote: > On Tue, Jan 31, 2012 at 5:18 AM, Brad Stintson wrote: > >> How do I design better UI for my android application?

[android-developers] Re: Newly installed widgets are not runnable on Honeycomb

2012-02-03 Thread David Ross
I guess I was not clear. Downloaded from the Market and then "run by the user". Yes, the download and install process does not run the APK automatically, but after it has been downloaded the Market App gives the user the the options to "Open" or to "Uninstall". Even if the user exits the Market App

Re: [android-developers] Android app (.apk) x Web app (using WebView)?

2012-02-03 Thread John Coryat
Perhaps another way to put it: Is your intended app fairly simple and have a UI that doesn't depend on speed or complex interactions with the hardware? Webview can be used for quite a lot of things. What it can't be used for is pretty much any game, anything that requires a fast interface and a

[android-developers] Re: Unable to open database file?

2012-02-03 Thread Zsolt Vasvari
Not my native code, the SQLite code. I am not trying to store anything in the database, just simply trying to open it using bog-standard SDK calls when it fails. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send

Re: [android-developers] Issue with adding multiple menu option.

2012-02-03 Thread TreKing
On Thu, Feb 2, 2012 at 12:16 AM, Damodaran wrote: > i am trying to use option menus for my application. when i add 4 > menuitem it shown in double row, but i need in one row (single row) > Only add 3 items.

Re: [android-developers] Is Android Apps are Device specific?

2012-02-03 Thread TreKing
On Thu, Feb 2, 2012 at 2:47 AM, Vikas Garg wrote: > I have a question , If I create a android app, will it run on any mobile > device have android on it. > http://developer.android.com/guide/topics/fundamentals.html#DeclaringRequirements For starters. --

Re: [android-developers] Android app (.apk) x Web app (using WebView)?

2012-02-03 Thread TreKing
On Fri, Feb 3, 2012 at 7:28 AM, Lucas Diego wrote: > so, what's better? Doing an app Android/Iphone or only one Web app (using > WebView, for example) instead of? > This will depend greatly on what your app does. Does it use Camera, GPS, Contacts, or other hardware / platform specific features?

Re: [android-developers] help regarding development of my app

2012-02-03 Thread TreKing
On Thu, Feb 2, 2012 at 6:20 AM, gaurav prashar wrote: > as in how do i start developing this > http://developer.android.com/guide/index.html https://www.google.com/ > & how do i connect this project to the server. > What server? http://catb.org/esr/faqs/smart-questions.html --

Re: [android-developers] Spinner with a custom dialog (with a searchbox - EditText -, ListView with custom Adapter - results)

2012-02-03 Thread TreKing
On Tue, Jan 31, 2012 at 6:36 AM, Mateus Barni wrote: > I need to show a searchable list when the Spinner is activated, and then > this list will retrieve the selected object to the spinner. > > How can I do this? > Grab the Spinner source, see how it manages its dialog, then retrofit it to use y

[android-developers] Re: Unable to open database file?

2012-02-03 Thread Jim Andresakis
Maybe its crashing because its initially trying to store a value that is null.Im just guessing because I have no idea what your code does on the native side. On Feb 3, 3:51 pm, Zsolt Vasvari wrote: > But if the user tries the same operation again, it works. > > So if it's a permissions proble

Re: [android-developers] Android LocationManager GPS Reading Never Changes While Screen is Off

2012-02-03 Thread Dhaval Varia
Hey if u need Continuous update.then leave ur s reenon in oncreate of activity On Feb 4, 2012 4:54 AM, "Ted Scott" wrote: > > I do a similar thing by running a service from an alarm, it checks > position every 15 mins. It works while I'm just toting the phone around in > my pocket screen locked.

[android-developers] Problem loading HTML file from android_asset in Browser

2012-02-03 Thread Julian Bunn
I am trying to launch the browser to show an HTML help file that is in the assets directory of my .apk. My code is: Uri uri = Uri.parse("file:///android_asset/help.html"); Intent intent = new Intent(Intent.ACTION_VIEW, uri); intent.setClass

[android-developers] Re: Calling startService from inside a BroadcastReceiver

2012-02-03 Thread Bret Foreman
I found the problem. The IntentService constructor cannot have an argument. -- 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

[android-developers] junit/content provider/sqlitegen: java.lang.IllegalAccessError: Class ref in pre-verified class resolved to unexpected implementation

2012-02-03 Thread OldSkoolMark
I have a ContentProvider that is using sqlitegen to provide sqlite DB access and am attempting to use JUnit to test it. com.antlersoft.android.db_0.1.6.jar provides runtime support for the generated DB classes and lives in the Content Provider's lib directory. The Content Provider loads and runs wh

[android-developers] Re: Newly installed widgets are not runnable on Honeycomb

2012-02-03 Thread David Ross
But that's not how it works in 2.3.x. Install the "App (Widget)", say from market. Don't run it when given the "Open" option in the market after download completes. Don't launch it from the Launcher either. Just navigate back to the Home Screen. Long press on home screen and select Widgets. Hey p

[android-developers] Re: Image comparison problem: getPixel() in android and getRGB() in JDK return different values for the same image

2012-02-03 Thread gjs
Hi, Also maybe try .png format if possible. Regards On Feb 4, 8:21 am, Romain Guy wrote: > First make sure that both return values in the same format (Android returns > ARGB not RGBA.) Also, f I remember correctly, Java2D can apply color > profiles when loading a bitmap. > On Feb 3, 2012 11:05

[android-developers] Calling startService from inside a BroadcastReceiver

2012-02-03 Thread Bret Foreman
I'm getting the following message in the logcat when I try to call startService (for an IntentService) inside a BroadcastReceiver: 02-03 15:50:02.944: E/AndroidRuntime(530): FATAL EXCEPTION: main 02-03 15:50:02.944: E/AndroidRuntime(530): java.lang.RuntimeException: Unable to instantiate service

Re: [android-developers] Questions re: "strategies for improving your app's … user experience"

2012-02-03 Thread TreKing
On Tue, Jan 31, 2012 at 12:17 AM, HS Incubar wrote: > Let's say I launch an app with a "BETA" label - purpose is to gain > user feedback and make significant improvements before launching it > "for real." > (I don't know any other way to release as Beta except to test outside > of the Android Mark

[android-developers] Re: Unable to open database file?

2012-02-03 Thread Zsolt Vasvari
But if the user tries the same operation again, it works. So if it's a permissions problem, it's temporary. The error message offers no clue as the real error happens in native code and the JNI java code just gives a generic message. On Feb 3, 4:06 pm, Jim Andresakis wrote: > Are you trying t

Re: [android-developers] Need to buy device for development

2012-02-03 Thread TreKing
On Tue, Jan 31, 2012 at 2:21 PM, Hine wrote: > What is a good go without spending a fortune? eBay? Craigslist? - TreKing - Chicago transit tracki

Re: [android-developers] Gallery Sources URL

2012-02-03 Thread TreKing
On Wed, Feb 1, 2012 at 5:01 AM, M0n5terbunny wrote: > where would i put the urls ? http://developer.android.com/resources/tutorials/views/hello-gallery.html Look at getView(). See where they set the Image resource. Then replace the hardcoded images with images from your URLs. -

[android-developers] Play a media file in the assets or res/raw folder in another app

2012-02-03 Thread droid-stricken
Hi All, I had posted this question yesterday on the stackoverflow. But no one seems to know the answer or have the time to make to share their thoughts. http://stackoverflow.com/q/9124314/693959 Is it possible to play a media file in the application's assets or res/ raw folder in another app lik

[android-developers] Forbidding touch event for underneath View inside FrameLayout

2012-02-03 Thread cindy
n my activity I use FrameLayout as a root container. Inside I've placed SlidingDrawer and osmdroid MapView. When my SlidingDrawer is opened and I touch it, MapView also receives touch event and tiles are moved. How do I fix this? Here's my layout file: http://schemas.android.com/apk/res/ android"

Re: [android-developers] Library 3D, VRML, WRL...

2012-02-03 Thread TreKing
On Thu, Feb 2, 2012 at 7:53 AM, kakko76 wrote: > I'm looking for a library to make an app who display VRML files (WRL > extension), any idea? Did you try this: http://bit.ly/zFbMRd? - TreKing

Re: [android-developers] Android LocationManager GPS Reading Never Changes While Screen is Off

2012-02-03 Thread Ted Scott
I do a similar thing by running a service from an alarm, it checks position every 15 mins. It works while I'm just toting the phone around in my pocket screen locked. It even works while the app is closed as long as the app has been started since boot and the alarm initialized. Maybe it has

Re: [android-developers] How to clean objects in android without calling Finish() and Destroy()?

2012-02-03 Thread TreKing
On Thu, Feb 2, 2012 at 9:15 AM, Lakshmi Vadupu wrote: > I wanted to do both. How can I achieve this?? Some one please explain!! > What "objects" are you trying to "clean"? Please explain!! - TreKing <

Re: [android-developers] Re: In-App Billing always fails with “Reason: Took too long to deliver”

2012-02-03 Thread John Coryat
Seeing that too on a couple of orders. Not a huge number though. A couple today. Bad deal that. I also see the same users trying again and hitting the same error. -John Coryat -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to t

Re: [android-developers] Re: In-App Billing always fails with “Reason: Took too long to deliver”

2012-02-03 Thread Kostya Vasilyev
http://code.google.com/p/marketbilling/issues/detail?id=45 http://code.google.com/p/marketbilling/issues/detail?id=50 https://groups.google.com/a/googleproductforums.com/forum/#!searchin/android-market/took$20too$20long$20to$20deli

Re: [android-developers] Image comparison problem: getPixel() in android and getRGB() in JDK return different values for the same image

2012-02-03 Thread Romain Guy
First make sure that both return values in the same format (Android returns ARGB not RGBA.) Also, f I remember correctly, Java2D can apply color profiles when loading a bitmap. On Feb 3, 2012 11:05 AM, "Ergen" wrote: > Hi. I want to compare two images. One image is on the android client > and an

Re: [android-developers] NullPointerException error

2012-02-03 Thread John-Marc Desmarais
On Tue, Jan 31, 2012 at 6:37 AM, geo wrote: > Hello,i am getting error: > > Caused by: java.lang.NullPointerException > E/AndroidRuntime(329):  at ...LineGraph.getIntent(LineGraph.java:109) > E/AndroidRuntime(329):  at LineGraph.onCreate(LineGraph.java:80) > E/AndroidRuntime(329):  at > androi

[android-developers] timer,thread,imageview in android

2012-02-03 Thread Salih Selametoglu
hello my friends, i wanna create image every five secends and destroy it after 3 seconds. How can i do it? can you help me? -- Salih SELAMETOĞLU Teknopalas RFID Yazılım Çözümleri / Yazılım Uzman Yardımcısı İstanbul Üni. Bil. Müh. 4. Sınıf http://www.linkgizle.com http://selametoglu.blogspot.com

Re: [android-developers] HELP

2012-02-03 Thread TreKing
On Wed, Feb 1, 2012 at 7:57 PM, Mark McDonald wrote: > I was hoping that I could get some > advice on which software to use for my windows environment. I have > downloaded Java and the SDK tools package > Add Eclipse to that and you're pretty much set. > I would apreciate any advice that the

[android-developers] mp3 works in browser but not in final APK

2012-02-03 Thread jsterj
I'm working on a fairly simple web based app. Basic functionality is push a button and hear a sound. It's all done in HTML and JavaScript and then built using Phonegap Build. It works perfectly in Android's browser. But when packaged into an APK and installed on the phone, the sounds don't play

[android-developers] add viewgroup to the listview, the listview item will not visiable.

2012-02-03 Thread pluto00...@gmail.com
when I try to add viewgroup as the listview's item. the listview will not visiable. follow is the code: package com.test.mylistview; import java.util.ArrayList; import android.app.Activity; import android.content.Context; import android.os.Bundle; import android.util.Log; import android.view.

[android-developers] How to clean objects in android without calling Finish() and Destroy()?

2012-02-03 Thread Lakshmi Vadupu
Can anybody help me out, how to clean objects in Android without calling Finish() and Destroy()? More detail:- I clicked on activity A "button" to go to activity B. And I clicked "back button" to go back to activity A screen. I this case objects are not cleaning if I don't call finish()/ destroy()

[android-developers] HELP

2012-02-03 Thread Mark McDonald
I am new to this world and realize their is a lot to learn before I begin writing my code, however I was hoping that I could get some advice on which software to use for my windows environment. I have downloaded Java and the SDK tools package and want to make sure I get on the right track for succ

[android-developers] incorrect memory allocation causing frequent garbage collections

2012-02-03 Thread Mark Meisner
I am creating a video via bitmaps updated in rapid succession (15fps). The problem is, when I call createBitmap() or createScaledBitmap(), Android creates a new bitmap, instead of overwriting the old one. This makes the system have to GC very often which in turn makes my video "shutter". How

[android-developers] How to get the value of dialer

2012-02-03 Thread Juned
hello all. i want to get the value of dialer which means if i dial any number i want to store that value in particular variable. i.e 9974740823 i want this value so i can edit or concat this value with other values. please help me. thanks in advance -- You received this message because yo

[android-developers] Re: ACTION_SCREEN_ON when phone call comes in

2012-02-03 Thread Lakshman
I think ACTION_SCREEN_ON will not work if it is put in Manifest. It has to be manually registered in code. On Jan 31, 12:16 am, phoku wrote: > I am working with the ACTION_SCREEN_ON event. Unfortunately, this intent is > not broadcasted when the device is stand-by and waked up by an incoming > ca

[android-developers] problem solved- in SIP calling using android 4.0.3

2012-02-03 Thread Juned
Hello All, the problem is solved just put one file /root/.android/avd/ avd2.3.3(whatever name of your AVD) put system.img file in this folder.and restart your IDE-eclipse. you can download this file from following link http://xilard.hu/emulator233_sip_files/system.img thanks -- You r

[android-developers] Library 3D, VRML, WRL...

2012-02-03 Thread kakko76
Hi, I'm looking for a library to make an app who display VRML files (WRL extension), any idea? Thanks. -- 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

[android-developers] Gallery Sources URL

2012-02-03 Thread M0n5terbunny
Hi im fairly new to this im trying to use image urls as sources for my gallery pictures but im having difficulty finding how this works, this is the code so far. public class ImageAdapter extends BaseAdapter { private static final int ITEM_WIDTH = 232; private static final in

[android-developers] Radio buttons with items in a ListView bound to a data table

2012-02-03 Thread blagdonman
I am unable to get radio buttons to appear in list items when a list view is bound to a data table. When a list view is bound through an ArrayAdaptor I can arrange for radio buttons to appear in the list items by: a) Creating a new activity that extends ListActivity. b) Setting selection mode to si

[android-developers] Binder Threads

2012-02-03 Thread Mertuarez
In my case a have too many(aboud #20) binder threads because i have a bug in my ContentProvider I dont have notifychange after update delete insert commands. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email

[android-developers] help me out in TimeTable APP

2012-02-03 Thread Sam
Hi frnz, I have to submit the timetable app to my Professor as an assignment, so please can any1 send me the code(java,xml,manifest etc) which creates the timetable of an individual professor and displays the timetable of the desired professor. Main activity shud contain two Buttons(create, Display

[android-developers] Can I figure out Wi-Fi 802.11 a b g n ?

2012-02-03 Thread jonghalim
hello, is it possible using API to distinguish which mode my AP are now among 802.11 a/b/g/n?? I searched dev.android.com , googles, groups. but I couldn't find the way yet. is there any ideas about it? -- You received this message because you are subscribed to the Google Groups "Android Deve

[android-developers] Re: NFC Secure Element

2012-02-03 Thread p z
I think maybe you can. and plesae share your rom when you finished.thx. On 2月1日, 上午8时15分, malls wrote: > Fernando, > > I was wondering if I can emulate the card in my application and send it to > the terminal. > > regards > malls -- You received this message because you are subscribed to the Go

[android-developers] Phone waking Activity has unknown 2 minute delay in onCreate

2012-02-03 Thread Jinja
I'm writing an alarm clock app and I'm using the AlarmManager to start up my Activity using a PendingIntent. This works 100% on the emulator, and 100% on a phone that is awake, but only 90% of the time when the phone is asleep. The 10% "failure" is a 2 minute delay in the alarm going off. The phone

[android-developers] Regarding sync contacts with Facebook

2012-02-03 Thread Raghupal Reddy
Hi all, In my project I want to sync phone book contacts with Facebook. Is It possible using SyncAdapter , I am developing using GingerBread, if anyone knows thistell me the procedure to develop. Thanks in advance -- You received this message because you are subscribed to the Google Groups "

[android-developers] how to get latest music player code for android 4.0 ?

2012-02-03 Thread davidlee
Hi All, Could you pls help to check how to get latest music player code for android 4.0 ? -- 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 gro

[android-developers] Android Remote Desktop Client

2012-02-03 Thread Raghupal Reddy
Hi All, Can anybody know the procedure to develop Remote Desktop Client using RDP. Thanks in advance -- 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 f

[android-developers] problem in SIP calling using android 4.0.3

2012-02-03 Thread Juned
Hello All, I am new to android and i want to develop a android based simple SIP application which can make and receive a call. For that purpose first i have tried to experiement on SIP Demo Application provided by Android. Below is the link from which i have downloaded that application resources.

[android-developers] how to modify the EGL_BAD_ALLOC error on Android 2.3.3?

2012-02-03 Thread xqhrs...@yahoo.com.cn
http://developer.android.com/guide/practices/screens_support.html -- 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

[android-developers] Re: What do these errors mean (using Eclipse)?

2012-02-03 Thread xqhrs...@yahoo.com.cn
maybe you are right! On 2月1日, 下午5时23分, sourabh sahu wrote: > I think you should write super(context) > > Sourabh > > > > On Wed, Feb 1, 2012 at 2:41 PM, atcal wrote: > > I'm trying to define my own View subclass. > > > public class myView extends View { > > >myView(Context context) { > >

[android-developers] Re: NFC Secure Element

2012-02-03 Thread Cadu Silvestre
And besides that, Google took out microSD from the major NFC phones, so, basically, we won't be able to do nothing when it comes card emulation - as for an obvius reason, the SE keys are not available. As far as I can gather from the giants in this matter (like our friend Michael Roland), SWP is t

[android-developers] About Calls.CACHED_NUMBER_LABEL

2012-02-03 Thread KeySabreur
Hi all I am trying to make a call log app, an I noticed that there's a field named CACHED_NUMBER_LABEL. The SDK document says "The cached number label, for a custom number type, associated with the phone number, if it exists. This value is not guaranteed to be current, if the contact informati

[android-developers] Tabs inside fragment problem with changing orientation

2012-02-03 Thread ondrej jurčák
I have a fragment with tabs on left side of my screen in landscape mode. I use tutorial http://developer.android.com/reference/android/app/TabActivity.html to create tabs in this fragment. Everything works fine so far, but when device change orientation, tabs in tabhost and content disapear. Prob

[android-developers] Spinner with a custom dialog (with a searchbox - EditText -, ListView with custom Adapter - results)

2012-02-03 Thread Mateus Barni
I`m really trying to find and implement a Spinner with a fully customized dialog. I need to show a searchable list when the Spinner is activated, and then this list will retrieve the selected object to the spinner. How can I do this? -- You received this message because you are subscribed to th

[android-developers] where can i got android 4.0 music player source code?

2012-02-03 Thread davidlee
Now android 4.0 was released and i download the code to study. but i find the music player app code was old. at i have seen the latest music player, it's really good. i want to download latest code to study, but i don't know how to got it, who can help me? thanks! -- You received this message be

[android-developers] How to get Cell's currently using frequency GSM/CDMA

2012-02-03 Thread ALi
Hi, Is there any Android class/ api by which i can get frequency of my cell GSM/CDMA. Any guideline. Thanks -- 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 unsubscr

[android-developers] Programmaticly set up Exchange on Android phones

2012-02-03 Thread Niklas Andersson
Hello! My ultimate goal is an application that sets up a Exchange account on a android phone. This will happen without the user being notifie. All settings (such as synctimes and domain\username) will be sent and recieved by some other means already figured out. Almost every android phone has a th

[android-developers] Android LocationManager GPS Reading Never Changes While Screen is Off

2012-02-03 Thread Joshua Witter
I posted this same question on StackOverflow if anyone wants the karma for answering it there. This is on an Android phone running 2.3.3 Gingerbread. I am trying to log a GPS location while the screen is off. When the screen is on, the GPS gives correct outputs... driving around in my car I have a

[android-developers] widgets: onEnabled() not getting called correctly at bootup...

2012-02-03 Thread Shaun
Hi all, I have created & installed a simple widget into the Android 2.2 simulator. Now when I bootup, I do see onEnabled() called once. But then the package manager decides to force stop the package and reinstall it. However from now on, onEnabled() is never called - only onUpdate(). I have in

[android-developers] WAKEUP alarms setup by GSF and GooglePartnerSetup causing Sleep current drain

2012-02-03 Thread kparsha
Hello All, In Android 4.0.1 and earlier release, GoogleServicesFramework, GooglePartnerSetup, Maps setup Alarms via AlarmManagerService of the type ELAPSED_REALTIME_WAKEUP and RTC_WAKEUP. Here is a breakdown of the number of wakeups from each in a span of one hour, com.google.android

[android-developers] Test In-App-Billing

2012-02-03 Thread lyz984
Hi, i have problems testing in-app billing with real product ids. I did everything as decribed in the documentation, but i always get the error message that this version of my app cannot purchase in android market. It only works when I publish my app and install it through android market. But this

[android-developers] sqlite login screen problem

2012-02-03 Thread srikanth chitturi
Hi i am creating a login screen in android . But i am facing a problem in which i have to find whether the username is already present in database and check with the password . please send reply. -- You received this message because you are subscribed to the Google Groups "Android Developers" gr

[android-developers] Re: LogCat not displaying TAG “SMS”

2012-02-03 Thread PewterHydra
There are some tags that don't go to the default buffer, as has been stated. You can view them by specifying which buffer to view with the "-b" logcat option. For example, to see the "SMS" logcat messages, start logcat with: adb logcat -b radio See here for documentation: http://developer.andro

[android-developers] how can access android phone (sdcard) on my computer browser via wifi ?

2012-02-03 Thread ltvie
Hi everyone...!! I want to know,,how can access android phone (sdcard) on my computer browser via wifi ? for example,from my computer browser i can access android phone just type IP and port (http://192.168.2.125:8080).. than show webpage from android phone ?? #sorry for my bad english..:) -- Y

[android-developers] How to preserve data across VM crashes

2012-02-03 Thread Jayce
Hello, I am developing for Froyo on a Nexus One. I have an issue where the dalvik vm crashes (in logcat AndroidRuntime specifically mentions it is shutting down the VM) and brings down running activities and services. My app is a single Activity - it executes onSaveInstanceState when the VM come

[android-developers] how to modify the EGL_BAD_ALLOC error on Android 2.3.3?

2012-02-03 Thread xqhrs...@yahoo.com.cn
how to modify the EGL_BAD_ALLOC error on Android 2.3.3? -- 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-developer

[android-developers] Database management

2012-02-03 Thread rodrigocarfer
So, I'm trying to access a db that does not belong to my app. I want to read and maybe write in the database responsible for the messaging storage (data/data/com.android.providers.telephony/databases/ mmssms.db). The problem is everywhere I search I'm told i cant access a database that does not bel

[android-developers] Re: sip demo

2012-02-03 Thread zelenooq
Emulator suport SIP but You have to do this: http://code.google.com/p/android/issues/detail?id=13037 Tablet suport SIP but only if You are wireless connected. On Jan 30, 10:56 am, Jagruti Sangani wrote: > hello, > i have used the sip demo which was > onhttp://developer.android.com/guide/topics/

[android-developers] How to get Cell's currently using frequency GSM/CDMA

2012-02-03 Thread ALi
Hi, Is there any Android class/ api by which i can get frequency of my cell GSM/CDMA. Any guideline. Thanks -- 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 unsubs

[android-developers] how to access database on pc by android app.

2012-02-03 Thread Islam Mohamed
Hi all, i have to make android app that received files from mobiles and save it on database in pc how to create database on pc that i can access it by android app which technique is the best for this Bluetooth or Wifi or...between the mobiles? which technique is the best for this Bluetooth or Wifi

[android-developers] Form Based App

2012-02-03 Thread mikein89
Hello All, I am looking at creating an android based application for a user to fill out a form. The form will consist of text boxes some radio buttons and maybe an image or too if possible. Then when they are finished they will submit it. Is it at all possible to do this in a way that it saves the

[android-developers] on communicating with USB device from Android 2.2.x Os based Tablet PC

2012-02-03 Thread jk
Hi I have 1) Android 2.2.x OS based Tablet PC ( by Livall .a company in China) 2) I have USB device that can perform FM Radio receiver. 3) I want to write a application in item 1 to access data from item 2. 4) After item 3, i just want to store or play aud

[android-developers] How to Pitch Sound

2012-02-03 Thread Eka
hi all. I want to ask. anyone knows how to pitch a voice in android application? application examples blow! blow! I want to make such an application. Please help. Regards, Eka kurniawan -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To

Re: [android-developers] Re: Header button above tabs not able to manage the activity under the tabs

2012-02-03 Thread vani reddy
Hey, When i do setCurrentTab(int value) the activity doesnt get refreshed. On Fri, Feb 3, 2012 at 7:53 PM, vani reddy wrote: > Hi., > TabACtivity is my HomeScreen.java and FirstActivity under the tab. > On click of refresh button i need to start a thread in a method in > FirstActivity .by passing

[android-developers] Re: Any way to add online form to android app?

2012-02-03 Thread HS Incubar
I'm not a coder. Still, consider this other way of looking at it. How about having your app cache your blank form as a local HTML file, on the client's phone? When user fills it out, you can "save as" to add a local copy to the phone's DB. At same time (or, as soon as network cnxn is available)

[android-developers] Create new jar for android for javax.* package

2012-02-03 Thread Gabriela Radu
Hello, I have some days now of trying diverse paths to connect to a SAP server. KSoap looked fine, but did not authenticated me on the server, and in the end I generated stub classes from a local wsdl and when trying to use a class that was generated , that used the javax.* classes I got stuck. Tho

[android-developers] NullPointerException error

2012-02-03 Thread geo
Hello,i am getting error: Caused by: java.lang.NullPointerException E/AndroidRuntime(329): at ...LineGraph.getIntent(LineGraph.java:109) E/AndroidRuntime(329): at LineGraph.onCreate(LineGraph.java:80) E/AndroidRuntime(329): at android.app.Instrumentation.callActivityOnCreate(Instrumentation

[android-developers] Questions re: "strategies for improving your app's … user experience"

2012-02-03 Thread HS Incubar
Hi all, I'm assessing the pros/cons of different approaches to Beta- testing an app before it's ready for prime time. Let's say I launch an app with a "BETA" label - purpose is to gain user feedback and make significant improvements before launching it "for real." (I don't know any other way to re

[android-developers] NoClassDefFoundError for a generated webservice class

2012-02-03 Thread Gabriela Radu
Hello, I am generating some stub classes using ant and at one point for apparently only one class, at runtime I get the NoClassDefFoundError exception, The class extends Service from javax.xml.ws.Service: @WebServiceClient(name = "MyClassService", targetNamespace = "...", wsdlLocation = "..") publ

[android-developers] ICS - OpenGLRenderer is out of memory! on Launcher application (Fonts are broken)

2012-02-03 Thread Johnnie
Hi! I have a problem with my AppWidget. Some users on Galaxy Nexus and Nexus S who have Android 4.0 are reporting broken fonts in stock launcher. I had the phone connected to ADB to see the logs and I found there these errors multiple times: OpenGLRenderer is out of memory! Is there a way to opti

Re: [android-developers] Read Heap from DDMS

2012-02-03 Thread Dmitrij
I have the same problem -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to a

[android-developers] Sample of using Protobuff.net in android using eclipse

2012-02-03 Thread Zanjani
Hi guys, I am new in android developing and need to use protobuff.net because the web services already written in this way. could you please send me a sample and help me through it. thanks heap guys. -- You received this message because you are subscribed to the Google Groups "Android Developers

[android-developers] AVD manager and Eclipse Helio

2012-02-03 Thread s.o.d.a.
Guys, Is it possible to run eclipse Helios and the android sdk on windows xp? I'm also having problems with the application on vistawhat do i do? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group

[android-developers] failure taking screenshot

2012-02-03 Thread Pete
Hello everybody, i'm trying to show an image launching an activity with intent ACTION_VIEW, but i get some problems. Here the code, you can also see some others tries i made below the commentary //: String path = //getting from a sqlite database File f = new File(path); //String extension =

[android-developers] Intent flag FLAG_ACTIVITY_RESET_TASK_IF_NEEDED

2012-02-03 Thread anat cooperman
I have encountered this flag (paired with FLAG_ACTIVITY_NEW_TASK), and cannot get to the bottom of it. I tried playing with activities and their affinities, and still dont have a clue as to what would be the expected behavior when this flag is set. The context i encountered this flag is (though i

[android-developers] Re: How can I load the saved map in my google map?

2012-02-03 Thread G. Hussain Chinoy
I have this question, too - Since My Maps are stored in the user's google account, I'm thinking there might be a new oauth2 way to get permissions to retrieve them but I haven't seen any APIs ... Does anyone know if this is possible? -- You received this message because you are subscribed to t

[android-developers] Problem Creating new Contact with photo

2012-02-03 Thread Gorka PlanetMedia
Hi, I am trying to create a new Contact with a photo, but my code doesn´t work properly. The thing is that the first time I execute the code the new contact doesn´t appear on the Contacts List, but the second time I execute it the contact appears twice and properly. I have tried the same code but

[android-developers] speex or jspeex support on android

2012-02-03 Thread hemant metalia
Hi, please can anybody help me how use speex or jspeex in android? I need to encode and decode bytestream of audio file using this codec. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developer

[android-developers] i need to have code for reading a imae from url

2012-02-03 Thread raju
i need some help in getting an image with the help of url bhai -- 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-de

[android-developers] Metrics ...

2012-02-03 Thread hhenault
Hello all, I wrote a small application (API-10), in order to get its metrics : ... DisplayMetrics wdm = new DisplayMetrics(); getWindowManager().getDefaultDisplay().getMetrics(wdm); msg.setText(wdm.toString); ... And on a Galaxy Note, I got this result : DisplayMetrics{density=2.0,width=320,

[android-developers] Problem on write data into Internal Storage

2012-02-03 Thread Iguana Tan
I'm trying to read from website url then write into device internal storage. Below are my code, the system output can print the line out but there is no file at internal storage. Suppose the abc.xml will appear at "/data/data/my-package/abc.xml" but there is nothing... Kindly help me on this proble

[android-developers] help regarding development of my app

2012-02-03 Thread gaurav prashar
sir, i am trying to develop an android application for my college as my final year engineering project. this will be an applicaton that consists of following features 1) campus news 2) events 3)campus maps 4)directories 5)social &media 6) photos of the campus i want to ask how do i go ahead with t

[android-developers] ConnMan's Corresponding Component in Android

2012-02-03 Thread Erik Bai
Dear All, As you know, "the Connection Manager (ConnMan) project provides a daemon for managing internet connections within embedded devices running the Linux operating system." --- http://connman.net/about. So I'd like to know the corresponding component in Android, which does the same work as C

[android-developers] Need to buy device for development

2012-02-03 Thread Hine
emulation is so slow that I think about buying a phone or pad, even though I don't need it. What is a good go without spending a fortune? henry -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-d

[android-developers] Android Search Dialog and Suggestions ListView: Change theme and colours?

2012-02-03 Thread Mo Kargas
I've implemented a simple search dialog that performs a custom search of the data within my app (Via a custom provider) as according to the guidelines here: http://developer.android.com/guide/topics/search/search-dialog.html The problem is that the search bar's colors and size (exceeds the height

[android-developers] SSL/TLS and ECC (Elliptic curve cryptography)

2012-02-03 Thread Kosmo Kosmorum
I'm developing an android application which communicates with a web server. We use HTTPS for this communication and we have also a client certificate inside the android application for authentication. We created SSL certificates using ECC (ANSI x9.62) in order to have very small certificates so we

  1   2   >