[android-developers] [Android TV] Regarding Android TV Input Framework Working and APIs

2016-01-09 Thread Developer
Hello, I am looking into the Android TV Input Framework. I was able to get the online documentation on the https://source.android.com/devices/tv/ site. However, I did not completely understand the detailed working and interaction between the Yellow app and the TV App. How are the playback surfac

[android-developers] Building Android for Nexus Player

2016-01-19 Thread Developer
Hello, I was trying to build android from source for my Nexus Player. I did the following steps, and the build was successful. repo init -uhttps://android.googlesource.com/platform/manifest -b android-5.1.1_r29 repo sync . build/envsetup.sh lunch full_fugu-userdebug make -j4 After building, I

[android-developers] Re: Building Android for Nexus Player

2016-01-19 Thread Developer
spinner in on opening the apps page. I am using a mouse for navigation, currently. Do you have any ideas as to why I would see this? Thanks! _Nitish On Tuesday, 19 January 2016 15:54:10 UTC-8, Developer wrote: > > Hello, > > I was trying to build android from source for my Nexus Pla

[android-developers] Re: Building Android for Nexus Player

2016-01-19 Thread Developer
Had to connect a keyboard to get it to work. I do not have Google Apps though. Not sure how to get them. On Tuesday, 19 January 2016 17:01:10 UTC-8, Developer wrote: > > After getting the device specific binaries, I was able to build and > startup the OS successfully, > However, afte

[android-developers] Image adquisicion app

2016-02-29 Thread developer
I want to develop an app to acquire images like google traductor module, i seek control on the flashlight and focus furthermore memory storage. thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop

[android-developers] Re: Image adquisicion app

2016-03-01 Thread developer
i need acquire image and have control on the flashlight to turn on or turn off while i see image of the camera. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an emai

[android-developers] Deny auto close for captive portal dialog on android devices

2016-07-06 Thread Developer
Hello, I'm the senior developer of an wifi project offering free internet access to citizen in some regions. Now on newer Android devices we are facing the problem that the captive portal dialogue gets closed as soon as the hotspot has unlocked full internet access for a wifi client

[android-developers] Re: Android Emoji keyboard

2016-07-26 Thread developer
I have same problem while I am coding my app. Did you find a solution for this situation? 21 Ağustos 2011 Pazar 13:43:53 UTC-7 tarihinde android_...@hotmail.co.il yazdı: > > > I'm developing an Android application .. its an emoji ( emoticons) > keyboard application as a university project .

[android-developers] Android and bluetooth

2008-11-21 Thread developer
Hi I have just started developing a new android app which needs to access bluetooth. But I came to know that android 1.0 doesnt support bluetooth, and has no API. is it? is there any other way to use bluetooth? Its really surprising me that android has no support for bluetooth,and developers

[android-developers] failed to install applications on G1 through USB

2009-02-16 Thread Developer
I follow the instruction to install my toy application, which ran well on my Mac. 1. Within Eclipse, I did "Android Tools-->Export Unsigned Application Package" to save MyApplication.apk into ~/workspace/MyApplication.apk. 2. Now Connect Your G1 Phone to your computer using USB cable. You need t

[android-developers] Re: failed to install applications on G1 through USB

2009-02-16 Thread Developer
bove generated key > > On Tue, Feb 17, 2009 at 11:37 AM, Developer wrote: > > > > > > > I follow the instruction to install my toy application, which ran well > > on my Mac. > > > 1. Within Eclipse, I did "Android Tools-->Export Unsigned Application >

[android-developers] Re: failed to install applications on G1 through USB

2009-02-17 Thread Developer
cess on my computer and do the above, #./adb install MyApplication_signed.apk error: device not found Note that I have plugged my USB well. Any thought? Thanks > if you change your package name then it don't show any error > > > > On Tue, Feb 17, 2009 at 1:00 PM, Developer

[android-developers] Store last selected items in Spinner across different app-launching

2009-01-03 Thread Developer
Hi, I want to save the selected item somehow, so that the selected item is shown as the selected spinner item next time the same activity is launched. How can I achieve that? Thanks, public class MyActivity extends Activity { private Spinner mSpinner; ... public void onCreate(Bundle save

[android-developers] software button for Camera and view control?

2009-01-15 Thread Developer
I have two questions about android's hardware camera API. 1) Is there a way to create a button that control camera snapshot? i.e, when I push the button on the screen, the camera takes photo in the same way as when I push the hardware button. 2) Can I make the preview-window showing how the pho

[android-developers] How to keep the selected item highlighted when menu button is clicked?

2009-01-19 Thread Developer
I have list of items displayed in ListActivity by onCreate() { ... setListAdapter(new SimpleAdapter(this, myData, android.R.layout.simple_list_item_1, new String[] {MyItemClass.Items }, new int[] { android.R.id.text1 })); } when I mov m

[android-developers] Re: How to keep the selected item highlighted when menu button is clicked?

2009-01-19 Thread Developer
vide such a mechanism. a weird design choice > > > > On Mon, Jan 19, 2009 at 9:27 PM, Developer wrote: > > > I have list of items displayed in ListActivity by > > > onCreate() { > >  ... > >          setListAdapter(new SimpleAdapter(this, myData, &

[android-developers] Re: How to keep the selected item highlighted when menu button is clicked?

2009-01-24 Thread Developer
ly return the call. But I think my natural intent may be looking for more details for that missed call instead of calling back. > > > > On Mon, Jan 19, 2009 at 10:55 PM, Developer wrote: > > > On Jan 19, 10:07 pm, Romain Guy wrote: > >> You can't. > &

[android-developers] How to control the width of scrollbars for DatePick?

2009-01-25 Thread Developer
Is there a way to control the width of the three scrollbars for DatePick? I wanted to make the following layout, but the default setup can't fit into the screen. I think there might be a way to control the width of the scrollbar so that the two DatePick can fit into the screen.

[android-developers] BUG in DatePicker! 2/30; 4/31 is quitely treated as a valid input

2009-01-30 Thread Developer
Why can't Datepicker dialog automatically figure out that there are no 30 and 31 in Feb? Should not this be considered as a bug in DatePicker class? The DatePicker dialog's 'set' button can be pushed without telling user 'this is an invalid date' --the application writers could embed the intellig

[android-developers] DatePicker -- 2/30; 4/31 is quitely treated as a valid input

2009-01-30 Thread Developer
Why can't Datepicker dialog automatically figure out that there are no 30 and 31 in Feb? Should not this be considered as a bug in DatePicker class? The DatePicker dialog's 'set' button can be pushed without telling user 'this is an invalid date' -- instead, it quietly convert 4/31 to 5/1; 2/30 t

[android-developers] How to add extra elements into Cursor or SimpleCursorAdapter?

2009-01-31 Thread Developer
Suppose I get a cursor that contains all rows from my database, and I want to show them on a spinner, the following code will work. But I want to show two extra items as the spinner elements, how can I add those two elements? For example, if the following code can show 4 spinner elements "Orange"

[android-developers] HTC Hero handset it not show any decimal point in my application

2010-03-02 Thread developer
Hi all, I face a problem when I run my application on HTC Hero 1.5 handset . I use formatted text in EditText (ie 0.00) but in HTC Hero handset it not show any decimal point, while in emulator as well as G1, Nexus handset it works fine. Why this happen?? Anybody can help me ASAP. -- You received

[android-developers] Enabling Google+ login in two different developer console accounts for the same application

2015-06-03 Thread developer
Hi All, We have published our application in Google Play using a developer console account. This is the official account for our application. Later, when one of our developers integrating Google+ login has enabled Google+ Login API in his own developer console account. He registered our

[android-developers] Send SMS message in a background?

2011-04-20 Thread Developer
Hello there, in my app I need to be able to send a text message in a background, without any user intervention. I found a way to do that using SmsManager (code below). It sure does send a message but the popup asking me to choose a delivery method still shows up (even after the message is sent). Is

[android-developers] Button add programmatically not clickable

2011-07-25 Thread deveLoper
Hi, I need to add some of my buttons programmatically since the titles are coming from a database that may change. The buttons are being add fine, but are not clickable. I am using a custom background for the buttons, but I am using the same background for some button I am using from xml and they w

[android-developers] download update of unpublished app?

2011-09-12 Thread deveLoper
Hi, We had a version of our application written in Titanium on the Market that we wanted to submit natively. We were not able to submit the natively coded app as an update to the Titanium, so we submitted an update to the Titanium one with a pop up that alerted the users to download our new one wi

[android-developers] Job opening for android developer

2022-02-16 Thread Android Developer
sted Dealer/Lender network to grow loan originations and digital retailing. Headquartered in Chennai, India, Kuwy has its reach across 70 locations in India. Visit: www.kuwy.in for more details *Android Developer* *Job Summary:* Min 2+ years and max 6 years of experience and Android sk

[android-developers] No Real Persistent Background Work? Pathetic Google -.-

2017-02-13 Thread Android Developer
Ok ideally here what Google Do. 'You know what? you want you'r own implementation of Firebase and GCM,well hell no you will not get that,use Firebase or GCM and don't trip'. If we try to collapse this into meaningful sentence :D then we will get the next view : Lately i have been on developmen

[android-developers] Get charged for Test Subscrition

2017-03-01 Thread Sphinx Developer
Hi, i had tried for Subscription for Product using Test Account.Even i was added the Test Account of gmail in Google Console.But still google charged me for that particular subscription. I followed the below link for this: https://developer.android.com/google/play/billing/billing_integrate.html

Re: [android-developers] REQ: Business Analyst - Healthcare

2017-09-19 Thread N developer
Hi Raavi, Please find attached resumes. *Thanks* *navneet* *Sr. Recruiter/Account manager* On Tue, Sep 19, 2017 at 1:23 PM, Raavi Recruiting wrote: > Hi, > > > *Position: Business Analyst - Healthcare Location: Newark, NJ* > * Duration: 6+ Months Contract* > > *Job Description:* > > Must Ha

[android-developers] Urgent Requirement :: SQL DBA :: Harrisburg, PA :: In-person Only :: 10+ years

2018-02-22 Thread N developer
Hi, Hope you are doing good! Please share updated resume at * na...@hci1.com * * * Job Title ::*SQL Server Database Administrator* Duration ::Contract Start Date :: Immediate Location :: *Harrisburg, PA(Local only)* *Experience :: 10+ years* *Interview-In-person only..* *Proje

[android-developers] Urgent Requirement :: UNIX/Linux Administrator :: Atlanta , GA :: 10+ years :: Contract

2018-02-23 Thread N developer
Hi, Hope you are doing good! Please share updated resume at * na...@hci1.com * * * Job Title ::*UNIX/Linux Administrator* Duration ::Contract Start Date :: Immediate Location :: *Atlanta , GA* *Experience :: 10+ years* *Project Description:-* *Responsibilities* - Strong A

[android-developers] Urgent Requirement :: Sr. Java Programmer with Taxation Experience :: Albany, NY :: 10+ years :: Contract

2018-02-26 Thread N developer
includes technical design, development, maintenance and end user support of complex processing. • At least 84 months demonstrated experience with Java programming in an IBM development environment using IDE of IBM's Rational Application Developer (RAD) that are deployed to WebSphere Applic

[android-developers] Urgent Requirement :: GIS developer:: Menands New York :: :: Contract

2018-02-27 Thread N developer
Hi, Hope you are doing good! Please share updated resume at * na...@hci1.com * * * *Job Title ::GIS developer* *Duration ::**Contract* *Start Date :: Immediate* *Location ::Menands New York 12204* *Project Description:- GIS developer* *Responsibilities-* Required Skills: • 84

[android-developers] Urgent Requirement :: Hyperion Developer :: New York City, NY :: 10 years :: In-person Interviews Only

2018-03-09 Thread N developer
Hi, Hope you are doing good! Please share updated resume at * na...@hci1.com * * * *Job Title: Hyperion Developer* Duration: 9 Months Location: New York City, NY – 10004 Position Type: Contract *Experience-10 years required In-person Interviews Only* *Hours per week 37.50 hours

[android-developers] Urgent Requirement :: SAP Transportation Management :: Westlake Village, CA :: contract

2018-03-27 Thread N developer
Hi, Hope you are doing good! Please share updated resume AT na...@hci1.com *Job Title ::SAP Transportation Management* *Duration :: Contract * *Start Date :: Immediate* *Location ::Westlake Village, CA* *Project Description:- * Responsible for Analyzing & documenting business re

[android-developers] Urgent Requirement :: UI Developer :: Buffalo NY :: contract ::10 years

2018-03-27 Thread N developer
Hi, Hope you are doing good! Please share updated resume AT navn...@sednacg.com *Job Title ::**UI Developer* *Duration ::**12 months* *Start Date :: Immediate* *Location ::**Buffalo NY* *10 years experience required* *Job Description:* UI developer (10 years experience

[android-developers] Urgent Requirement :: UI Developer :: Buffalo NY :: contract ::10 years

2018-03-28 Thread N developer
Hi, Hope you are doing good! Please share updated resume. *Job Title ::**UI Developer* *Duration ::**12 months* *Start Date :: Immediate* *Location ::**Buffalo NY* *10 years experience required* *Job Description:* UI developer (10 years experience required) · Core

[android-developers] Urgent Requirement :: SAP Transportation Management :: Westlake Village, CA :: contract

2018-04-11 Thread N developer
Hi, Hope you are doing good! Please share updated resume AT na...@hci1.com *Job Title ::SAP Transportation Management* *Duration :: Contract * *Start Date :: Immediate* *Location ::Westlake Village, CA* *Project Description:- * Responsible for Analyzing & documenting business re

[android-developers] Urgent Requirement :: Full Stack Software Engineer :: Maryland :: 10+ years:: Long term

2018-04-16 Thread N developer
Hi, Hope you are doing good! Please share updated resume AT *kunwar.si...@cojiantllc.com * *Title:* Full Stack Software Engineer *Duration:* Long Term *Location:* Maryland *Experience* :: 10+ years *JOB DESCRIPTION* *• *Develop and implement robust client-side solutions using

[android-developers] How can i develop android facial MakeUp Application

2016-03-01 Thread developer . uitoux
is there any library or sdk availbale for developing android application -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to android-developers+unsubscr...@goo

[android-developers] Hardware updates

2016-07-21 Thread New Developer
It has been a few years now that Google released the platform development Kit (PDK) When are we going to see manufacturers start updating their hardware to run the latest versions of android ? OR when are we going to see Google pressure manufacturers to update their hardware. When Google purc

[android-developers] ADC II

2008-11-12 Thread LBS-Developer
When will ADC II commence? --~--~-~--~~~---~--~~ 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 emai

[android-developers] Please Help - Can't Upgrade Suspended App on Market

2009-02-13 Thread Java Developer
ARGH! A few months back my application was marked as "suspended" because I violated the agreement by having users purchase a license key through PayPal. Google explained all I would need to do was "re- upload" my application sans the offending code. But, there is no "upgrade" button once your appl

[android-developers] Re: Please Help - Can't Upgrade Suspended App on Market

2009-02-13 Thread Java Developer
incrementing or changing the version within the namespace, > com.sweat.startup.v2. > > Shane > > On Fri, Feb 13, 2009 at 1:04 PM, Java Developer wrote: > > > > > ARGH! A few months back my application was marked as "suspended" > > because I violate

[android-developers] Re: Please Help - Can't Upgrade Suspended App on Market

2009-02-13 Thread Java Developer
m, Stoyan Damov wrote: > > On Feb 13, 4:19 pm, Shane Isbell wrote: > >> In not using Android Market (restricted by terms), but I always put a v[x] > >> into the namespace, something like com.sweat.startup.v1. This allows me to > On Fri, Feb 13, 2009 at 11:28 PM

[android-developers] Re: Please Help - Can't Upgrade Suspended App on Market

2009-02-13 Thread Java Developer
droidManifest.xml after the refactor. > > On Fri, Feb 13, 2009 at 2:54 PM, Java Developer wrote: > > > > > Intellij Yes, clicking "refactor" was easy enough. But after doing > > so the app will not install. I have checked for all instances of the > > p

[android-developers] Infinite Versions

2009-02-17 Thread Java Developer
I'm having a bit of trouble understanding the Market T&Cs. It appears once a user purchases my application they are entitled to upgrade to every future version. For example, if a user buys version 1.1 this week they are entitled to upgrade to version 2.0 next year. Seems counterintuitive to norma

[android-developers] Re: Infinite Versions

2009-02-18 Thread Java Developer
ld make a few 100k in a couple weeks I may think differently too!). Amazed, Kevin On Feb 18, 12:40 am, Shane Isbell wrote: > On Tue, Feb 17, 2009 at 7:33 PM, Java Developer wrote: > > > > > I'm having a bit of trouble understanding the Market T&Cs. > > > It appear

[android-developers] Re: Dev Phone -- unable to see paid app on market

2009-02-21 Thread Java Developer
I wondered the same thing, from what I was able to find out it appears the update is being sent by T-Mobile, thus you not only need to have a Sim card in the phone (which I don't) you also need to have the phone on T-Mobile (so my iPhone Sim can't help here) On a side note, I don't believe th

[android-developers] Re: Dev Phone -- unable to see paid app on market

2009-02-21 Thread Java Developer
I may have spoke too soon... see this thread started by Al. It appears some people are seeing paid apps now, read the second page of posts: http://groups.google.com/group/android-developers/t/decac495fc606669 On Feb 21, 9:16 am, Java Developer wrote: > I wondered the same thing, from wha

[android-developers] Checkout email notification

2009-02-22 Thread Java Developer
I am not recieving email notification of orders through the Market even though the correct settings have been selected in GC. We do not have email/junk filters, is anyone else having this problem? --~--~-~--~~~---~--~~ You received this message because you are subsc

android-developers@googlegroups.com

2009-02-22 Thread Java Developer
entated around the Android OS, so access > > >> from other platforms would be of limited use, which would re-enforce any > > >> claim by Google that payments for the service were actually a payments > > >> for using the application, even if we gave the applicat

[android-developers] "Could be better"?!?!

2009-02-22 Thread Java Developer
HA! If I didn't laugh at this I would cry. An individual bought our second application today, a simple app which allows the user to Ping and search Whois information. It is called "Pinger" and cost $1.00. It was returned with the comment "Could be better". Um, of course it could be better! You o

[android-developers] Re: "Could be better"?!?!

2009-02-22 Thread Java Developer
just remains mum. After reviewing the link you sent (which is different then the link on the actual Distribution Agreement: http://www.android.com/us/developer-distribution-agreement.html) it appears you are correct. Returns within the 24 hour window won't cost us a dime. To that end we put Pinge

[android-developers] Re: (OT) Is the combination of Android Market and Google Checkout a joke?

2009-02-23 Thread Java Developer
"So design games with replay value. Randomize things, periodically release downloadable levels, whatever. " In my opinion, this is a completely bogus statement for most games/ applications developed on this platform (minus organizations such as EA Sports, etc.). The G1 is not a PS3. If I purcha

[android-developers] Re: "Could be better"?!?!

2009-02-23 Thread Java Developer
than ping, also queried whois, etc etc.! This was one mean app... Kevin On Feb 23, 12:53 pm, somatt wrote: > Well, > IMHO charging for a pinger, even $1, is ridiculous. > -Matt > > On Feb 22, 2:10 pm, Java Developer wrote: > > > HA! > > > If I didn't lau

[android-developers] Re: Dev Phone and RC33 update

2009-02-27 Thread Java Developer
m andappstore" or "I got it > for free from the developer" (both legit but not market) from "Joe copied it > off his phone for me"? > > > > On Fri, Feb 27, 2009 at 12:34 PM, Steve Barr wrote: > > > On 2/27/09, Jean-Baptiste Queru wrote: > > &

[android-developers] Re: Dev Phones still sold out

2009-03-04 Thread Java Developer
Steve, Trust me, you don't want one. Give your money to charity, it will be more fulfilling. See the hundreds of posts on how Google is not supporting the Developer Phone. It lacks the updates the G1 T-Mobile users are getting... http://groups.google.com/group/android-developers/browse_t

[android-developers] Re: Dev Phones still sold out

2009-03-04 Thread Java Developer
I understand... as long as Steve knows what he is getting into... On Mar 4, 3:13 pm, Avraham Serour wrote: > well, that's not really an option for anyone living outside us and/or gb > > On Wed, Mar 4, 2009 at 10:07 PM, Java Developer wrote: > > > > > Steve, >

[android-developers] Re: Dev Phones still sold out

2009-03-04 Thread Java Developer
Avraham Serour wrote: > > can you elaborate? I'm also planning on buying a dev phone > > > On Wed, Mar 4, 2009 at 10:26 PM, Java Developer > > wrote: > > >> I understand... as long as Steve knows what he is getting into... > > >> On Mar 4, 3:13

[android-developers] Need help on setDataSource( )

2009-01-05 Thread developer software
Hi, In setDataSource( url), if the url has the multicast address will that performs igmp join and recieves rtp packets? Otherwise do we have any other ways? Regards, --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "

[android-developers] It is now MID-Q1, where are the Paid Apps?

2009-02-02 Thread Java Developer
Dear Google, I believe I have been quite reasonable, patiently waiting for you to deploy the paid application solution. I adopted Android early, took many punches and setbacks each time you rolled out a new SDK making major changes to the API. Now I am frustrated with how you are handling this s

[android-developers] It is Now MID-Q1, where are the Paid Apps???

2009-02-02 Thread Java Developer
Dear Google, I believe I have been quite reasonable, patiently waiting for you to deploy the paid application solution. I adopted Android early, took many punches and setbacks each time you rolled out a new SDK making major changes to the API. Now I am frustrated with how you are handling this s

[android-developers] android.graphics.PixelFormat

2009-02-04 Thread android developer
Hi, what are the parameters that need to be passed for getPixelFormatInfo(int format, PixelFormat info) function. I have a bitmap and i am trying to get the pixel information of the bitmap. Thanks, --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] Query regarding MediaStore

2010-02-25 Thread Android Developer
Hi, I want to use MediaStore content provider. I have a query on the same. Will the database get updated upon boot complete? I observed that the database is empty unless Gallery application/ Music application is launched. Could anyone clarify on the same? Kavitha -- You received this message b

[android-developers] Not able to see EmailProvider.db in file explorer (DDMS)

2010-03-11 Thread Android Developer
Hi, In the email application, EmailProvider.db is not seen. Can anyone tell me how to retrieve the same? Earlier in eclair code it was present in data/data/com.android.email/ databases/EmailProvider.db So how do we retrieve the same? Regards Kavitha -- You received this message because you are

[android-developers] Java Script Engine in Nexus One

2010-03-14 Thread Android Developer
Hi, Any idea which JS Engine is used in Nexus one? JSC or V8? -- 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] Query regarding Email application

2009-12-17 Thread Android Developer
Hi, I am working on Android SDK2.0 . Following is my observation regarding email application. I have 2 accounts created in email application. 1. accou...@google.com 2. accou...@google.com accou...@google.com is the default account. When i try to compose a mail using accou...@google.com, i can se

[android-developers] Android application upgrade scenario

2010-08-25 Thread Android Developer
I have a pre-installed application on device, when user upgrades application on pre-installed application, i want to show alert something similar change log when user opens the application. In pre- installed application, it's not storing any version specific information.Is there any way to recogni

[android-developers] How to "printf" in android development

2010-09-03 Thread xi developer
I just notice that in android app. development( I use Eclipse as my IDE), if I have a statement "System.out.printf("hello")", it wont show anywhere, either console or LogCat, How can I see the output of "printf" in android app. development?? -- You received this message because you are subscribed

[android-developers] How to use 'SQLiteStatement' to insert a item ( with multiple columns)

2010-09-07 Thread xi developer
I am new in Android development, I got a simple question to ask, I know the way how to implement item insert to DB table when there is only one id column and one "name" column in the table, which is: "CREATE TABLE myTable (id INTEGER PRIMARY KEY, name TEXT)" String INSERT = "insert into myTable

[android-developers] Why I can not open database in my service layer class

2010-09-15 Thread xi developer
When I create a instance of the SQLiteOpenHelper, I always need a "Context" to be passed as its constructor's argument. To use this "Context", in my service layer class, I extends Activity class, though I do not display this activity on the screen because it is my service layer. I always get NullPo

[android-developers] Android API JavaDoc online service in a Rich Internet Application (JavaFX)

2010-09-27 Thread Android Developer
JavaDoc is usually text-based and in HTML format. If you want to view the packages and class hierarchy graphically, here is a little utility http://www.DataCivilization.com/A.html. Basically that is a JavaDoc viewer developed in JavaFX. You can use it to browse the Android API class by class whil

[android-developers] Re: Calling a MapActivity from another activity

2010-09-28 Thread android developer
I already done this.. but still i am getting same error.. NoClassDefFoundError.. In build what we should choose google api or adnroid api. Can you please tell me how did you solve? Thanks On Aug 4, 9:59 pm, JR wrote: > I got this error and it was caused from the: >           > Being missing fro

[android-developers] Re: Calling a MapActivity from another activity

2010-09-28 Thread android developer
I got the answer.. Its because I am using android API level.. instead We should use Google API level... On Aug 4, 9:59 pm, JR wrote: > I got this error and it was caused from the: >           > Being missing from my Manifest.xml, it needs to be within the > tag. > I agree it is odd to get a NoC

[android-developers] How to change the icon position on a tab

2010-10-06 Thread xi developer
Where can I change my icon position on a tab to be in the center of the tab. Currently, my icon is located on top of the tab by default... -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-develop

[android-developers] Re: How to change the icon position on a tab

2010-10-06 Thread xi developer
height="fill_parent" android:gravity="center_vertical" android:background="@color/row_bg_color"> On Oct 6, 4:31 pm, Mark Murphy wrote: > On Wed, Oct 6, 2010 at 9:30 AM, xi developer wrote: > > Where can I change my icon positi

[android-developers] Warning msg “No keyboard for id 0”????

2010-10-14 Thread xi developer
I am new in Android app. development, now I have encountered a strange problem with the Menu button. Here is the thing: I have two activities, "ActivityOne" and "ActivityTwo", where "ActivityTwo" is the child Activity of "ActivityOne". In both activity, I have defined the menu button options like

[android-developers] how to inject view from a dialog layout xml file when using RoboGuice?

2010-11-03 Thread xi developer
It seems that roboguice can only inject views from the contentView defined in onCreate(...) of the activity, outside onCreate(), for example, if I have my custom dialog, which has also a content view (e.g.dialog.setContentView(R.layout.dialog_layout);), the views inside the dialog_layout.xml can no

[android-developers] How to get a string from a website, and show the string on my android app. ?

2010-11-11 Thread xi developer
I have made a service which extends Service in android, and running in the background of my android app. What I want from this background service is to get the euro to dollar exchange rate from a finance website, I have my service ready, it can periodically run a function, I am now need to implemen

[android-developers] How can service return a string back to Activity?

2010-11-11 Thread xi developer
I am new in Android . I encounter the following situation, I have a background running service, which will get a keep-updating string from a webpage, I need to show this keep-updating string in my UI through Activity, since this string is get from service, I am wondering, How can the service pass

[android-developers] Re: How can service return a string back to Activity?

2010-11-11 Thread xi developer
o activity with string in broadcast's intent as an extra. > > Best regards, > Filip Havlicek > > 2010/11/11 xi developer > > > > > > > > > I am new in Android . I encounter the following situation, > > > I have a background running service,

[android-developers] Using/Implementing android user dictionay.

2010-05-12 Thread android-developer
Hello All, I am new to android and still unaware of many concepts of android. I have a requirement wherein I need to implement a custom keyboard layout (input method). I need to populate suggestions for the characters being entered. When I look into SoftKeyboard example, this functionality is not i

[android-developers] Is there any dictionary of words in android platform?

2010-05-13 Thread android-developer
Is there any dictionary of words present in android platform ? If yes how can I use this dictionary in my applications to populate suggestions/predictions ? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email t

[android-developers] implementing predictions for IME?

2010-05-13 Thread android-developer
Kindly share information regarding how to implement predictions for input methods... I have a new keyboard layout for which I need to provide prediction/sugeestion functionality -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to

[android-developers] Process in Android

2010-01-12 Thread Android Developer
Hi, I have an application which has one activity. The application is launched. When i say back, OnDestory() would be called. This means that the activity is being killed. What will happen to the process? Will the process also be killed? But when i use ps command i could see the process still runn

[android-developers] Using Bundle in onPause()

2010-01-13 Thread Android Developer
Hi, Is it possible to use bundle and save the data in OnPause() lifecycle method? The scenario is i have 2 edit text and have entered some data i want to retain the data when the activity is killed and started again. This can be achieved using onSaveInstanceState() but as documentation says, this

[android-developers] ClearTaskOnLaunch flag is not working

2010-01-14 Thread Android Developer
Hi, I have two activities in an application Activiy1 and Activity2 where Activity1 is the launcher. i have set clearTaskOnLaunch=true for activity one using below code I will launch the application, then from Activity 1 ->Activ

[android-developers] Re: sdk setup.exe and windows 7

2010-01-28 Thread Lambda Developer
hi, i have the same problem as Andrew Green. I am not being able to run android sdk setup.exe! java is properly installed on my windows 7. (latest version of JDK) what i think i have done is modified the environment variable "PATH", and probably that is causing the trouble. i would be glad if someo

[android-developers] How to get geolocation for the given ip address

2012-03-13 Thread Android Developer
Hi, I have a map activity and i want to set the coordinates(latitude,longitude) for the given ip address. Whichever ip address i pass i need to get latitude and longtitude. how do i get it? *GeoPoint point = new GeoPoint(latitude ,longtitude);* - for given ip address. Thanks Mani. -- You r

Re: [android-developers] How to get geolocation for the given ip address

2012-03-13 Thread Android Developer
> > On Tue, Mar 13, 2012 at 10:37 AM, Android Developer > wrote: > > Hi, > > > > I have a map activity and i want to set the > coordinates(latitude,longitude) > > for the given ip address. > > > > Whichever ip address i pass i need to get latitude and l

[android-developers] OnKeyListener is not working, why?

2012-03-14 Thread xi developer
I have a fragment class, in the fragment class, I implement the onCreateView(...) callback in the following way: @Override public View onCreateView(LayoutInflater inflater, ViewGrou

Re: [android-developers] multi touch

2012-03-15 Thread android developer
multitouch works only views concept, On Thu, Mar 15, 2012 at 12:40 PM, shihab shiha wrote: > Hi , > > I have two buttons i want to activate multitouch for these two buttons. I > have two sound files. i want to play these files using the multi touch > concept. Pleas give a solution for this. > >

[android-developers] How to get Streetview in mapactivity

2012-03-16 Thread Android Developer
Hi All, StreetView method in now depricated in mapactivity. how do we display the map with streetview. Thanks Mani -- 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

Re: [android-developers] How to get Streetview in mapactivity

2012-03-16 Thread Android Developer
Hi This method is already deprecated. i used it but its not working'. Thanks Mani On Fri, Mar 16, 2012 at 4:21 PM, Narendra Singh Rathore < nsr.curi...@gmail.com> wrote: > > > On Fri, Mar 16, 2012 at 4:15 PM, Android Developer < > c2dmdevelo...@gmail.com> wrote:

[android-developers] android developer wants to chat

2012-03-20 Thread android developer
--- android developer wants to stay in better touch using some of Google's coolest new products. If you already have Gmail or Google Talk, visit: http://mail.google.com/mail/b-5dd04db2b3-947e5a6ec4-58Pk-rVJyUPbXJ3v-wyzur

Re: [android-developers] Re: Push Notification Services for 4.0

2012-03-21 Thread Android Developer
yes, it is. C2DM Supports from 2.2 and higher. Mani. On Wed, Mar 21, 2012 at 1:33 PM, Hemant Chaudhari < hemant.newslet...@gmail.com> wrote: > Thanks Nicolas, > > Is it also supported on Android 4.0? > -Hemant > > > > On Wednesday, 21 March 2012 11:54:44 UTC+5:30, Nicolas Embleton wrote: >> >>

[android-developers] Re: How to make autocompletetextview list border as transparent

2012-03-21 Thread Android Developer
Hi I am not sure whether i can achieve this or not. because its default list attributes i dont know how to change this. On Wed, Mar 21, 2012 at 1:37 PM, Android Developer wrote: > Hi, > > I have autocompletetextview while tying its shows the list. how to i make > the list border as

[android-developers] Set Layout Background Image and change color of the image dynamically

2012-03-24 Thread Android Developer
Hi, I have LinearLayout i want to set Image as background and i need to change the image color. I mean image remains transparent and it should reflect whatever background color we choose. I dont know how to start with any example is helpful. Thanks in Advance. -- You received this message be

  1   2   3   4   5   >