[android-developers] NullPointerException when building a Notification: Attempt to invoke interface method 'java.util.List android.os.IUserManager.getProfiles(int, boolean)'

2016-12-09 Thread Komal Kashiramka
This happens very infrequently when building notification but it does happen. What's the best way to resolve this? -- 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 e

[android-developers] Issues with invoking mailto: through javascript

2010-10-28 Thread Komal
javascript which in turn will do mailto: with some contents. It throws errors.. how can I get this working ? Thanks, Komal -- 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@googlegro

[android-developers] Re: How to set letter-spacing for EditText or TextView

2010-10-06 Thread Komal Jain
I too want to change the Character Spacing in TextView. I googled lot, but could not find solution. Did you got a solution, then please reply, as it would help others a lot. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this g

[android-developers] Re: cant read file from data/data/pkg/files/...

2009-03-30 Thread Komal
Hi, if somebody can solve my doubt ,please help me!!! Thanks in advance!!! On Mar 31, 12:32 pm, Mark Murphy wrote: > Komal wrote: > > Can i read from data/data/pkg/files/filenm in java script/html page? > > I don't know. I have never tried it. > > -- > Mark

[android-developers] Re: cant read file from data/data/pkg/files/...

2009-03-30 Thread Komal
Thanx mark, Can i read from data/data/pkg/files/filenm in java script/html page? Thanx komal On Mar 31, 11:34 am, Mark Murphy wrote: > Komal wrote: > >  but i cant save image at runtime in the assets folder using > > file:///android_asset/filename.jpg > > Assets are pa

[android-developers] Re: cant read file from data/data/pkg/files/...

2009-03-30 Thread Komal
f. > >   mike > > On Mar 30, 4:16 pm, Komal wrote: > > > Hello > > please help me!!! > > Thank you > > > On Mar 30, 1:29 pm, Komal wrote: > > > > Hi, > > > I am saving an image using openFileOutput and now i want to use this > > &

[android-developers] Re: cant read file from data/data/pkg/files/...

2009-03-30 Thread Komal
Hello please help me!!! Thank you On Mar 30, 1:29 pm, Komal wrote: > Hi, > I am saving an image using openFileOutput and now i want to use this > image in my java script file. > I am saving image using this code : > > Bitmap b=DownloadImage(imageUrl); >

[android-developers] cant read file from data/data/pkg/files/...

2009-03-29 Thread Komal
hl=window.mypage.getHeadline(); document.write(hl); ** it is not displaying an image. can i read file from data/data/pkg/files/... directly like this

[android-developers] Re: Problem in converting byte array in Bitmap.

2009-03-22 Thread Komal
Somebody please help me,,why decodeByteArray(...) returns null Thanxs komal On Mar 20, 11:45 am, Komal wrote: > Hello, > I want to store image in sqlite database. > I tried to store it using BLOB and String, in both cases it store the > image and can retrieve it but when  i c

[android-developers] Problem in converting byte array in Bitmap.

2009-03-19 Thread Komal
Hello, I want to store image in sqlite database. I tried to store it using BLOB and String, in both cases it store the image and can retrieve it but when i convert it to Bitmap using BitmapFactory.decodeByteArray(...) it return null. Below is my code please have a look and suggest me where i m ma

[android-developers] Re: read cookie value which is set by website browsed in emulator browser

2009-03-18 Thread Komal
somebody plese help me! On Mar 17, 1:46 pm, Komal wrote: > Hi, > In my app i want to use thecookievaluewhich issetwhen user open > mywebsitein android phonebrowser. > Is it possible toreadvalueofcookiewhich issetbybrowserof my > android p

[android-developers] read cookie value which is set by website browsed in emulator browser

2009-03-16 Thread Komal
Hi, In my app i want to use the cookie value which is set when user open my website in android phone browser. Is it possible to read value of cookie which is set by browser of my android phone?? Thnx --~--~-~--~~~---~--~~ You received this message because you are s

[android-developers] read cookie value which is set by website

2009-03-15 Thread Komal
Hi, In my app i want to use the cookie value which is set when user open my website in android phone browser. Is it possible to read value of cookie which is set by browser of my android phone?? Thnx --~--~-~--~~~---~--~~ You received this message because you are s

[android-developers] read cookie value which is set by website

2009-03-15 Thread Komal
Hi, In my app i want to use the cookie value which is set when user open my website in android phone browser. Is it possible to read value of cookie which is set by browser of my android phone?? --~--~-~--~~~---~--~~ You received this message because you are subscri

[android-developers] Problem in Scrolling list

2009-02-25 Thread Komal
Hi, I am facing an error when i m scrolling my list multiple time. java.lang.OutOfMemoryError:bitmap size exceeds VM budget when i scrolls my list (ups n down) ,it scrolls good for sometimes... if i scroll(ups n down , very fast) continuously then his error occurs. How can i solve it?? --~--~--

[android-developers] Re: Problem in going in back/previous activity

2009-02-23 Thread Komal
my app ,,and now my app is running successfully. Thanx to all for help. Cheers Komal On Feb 20, 4:52 am, Sundog wrote: > You closed your database - probably on the activity exit -  and > subsequently tried to access it. Been there, done that! ;) > > On Feb 18, 5:09 pm, Komal wro

[android-developers] Re: How to prevent my application being closed on clicking the back button on emulator

2009-02-23 Thread Komal
my app ,,and now my app is running successfully. Thanx to all for help. Cheers Komal On Feb 22, 7:09 pm, Immy wrote: > Constants is just another class, created by you. > > Just used it to store static variables... U need to define it... :) > > On Feb 19, 5:28 am, Komal wrote

[android-developers] Re: How to prevent my application being closed on clicking the back button on emulator

2009-02-18 Thread Komal
extras); >      } > > Called Activity, On pressing back button: > this.setResult(Constants.SUBACTIVITY_RESULTCODE_MOVEBACK); >      this.finish(); > > On Feb 16, 7:25 am, Komal wrote: > > > Hi Immy > > Thnx  for  replying. > > I want to use the back button f

[android-developers] Re: Problem in going in back/previous activity

2009-02-18 Thread Komal
the screen when you press the Back > button? > > On Feb 15, 6:51 pm, Komal wrote: > > >  Hi, > > Thnx  for  replying. > > Its calling onPause() method of second activity but its not calling > > onResume() of first activity. why it is so?? > > This is my code

[android-developers] Re: Problem in going in back/previous activity

2009-02-15 Thread Komal
t my first > activity's onResume() was indirectly reinitializing something it > shouldn't have, and kaboom. > > On Feb 9, 9:05 pm, Komal wrote: > > > Hi, > > I am developing simple application. > > I have one activity which displays list of name of employees. I

[android-developers] Re: How to prevent my application being closed on clicking the back button on emulator

2009-02-15 Thread Komal
playing screens? > > > > That's the first thing. Only activities will work correctly with the > > > > back button. > > > > > If you are properly doing it with two separate activities, how are you > > > > calling the second one? Are you usin

[android-developers] Re: How to prevent my application being closed on clicking the back button on emulator

2009-02-12 Thread Komal
> > If you are properly doing it with two separate activities, how are you > > > calling the second one? Are you using a finish() in the first > > > activity? If so, remove it. > > > > On Feb 11, 4:30 pm, Komal wrote: > > >> Hello NewDev, > > >&

[android-developers] Re: Problem in going in back/previous activity

2009-02-12 Thread Komal
No one can solve my problemsomebody please help me On Feb 10, 3:05 pm, Komal wrote: > Hi, > I am developing simple application. > I have oneactivitywhich displays list of name of employees. I m > fetching the employees name from database. > when i click on any of t

[android-developers] Re: How to prevent my application being closed on clicking the back button on emulator

2009-02-11 Thread Komal
Hello NewDev, I am facing the same problem.do u have solution of it???if u have then please post it. Thanx. On Feb 5, 9:47 pm, NewDev wrote: > Hi, > > I have anapplicationwith main view having a search button. On > clicking the search button, search results are displayed in a text > view. When

[android-developers] Re: Cant go back to previous page from webview page.

2009-02-11 Thread Komal
 am, "Fred Grott(shareme)" wrote: > In  your webview settings code what do you have?..ie post it so we can > take a look > > On Feb 2, 5:24 pm, Komal wrote: > > > Hi, > > I am developing simple RSS Reader kind of application.In my applicaion > > i cant go b

[android-developers] Problem in going in back/previous activity

2009-02-09 Thread Komal
Hi, I am developing simple application. I have one activity which displays list of name of employees. I m fetching the employees name from database. when i click on any of the name ,i will display the next page showing details of that employee. also fetching details of employee from the database.

[android-developers] Problem in going back activity

2009-02-09 Thread Komal
Hi, I am developing simple application. I have one activity which displays list of name of employees. I m fetching the employees name from database. when i click on any of the name ,i will display the next page showing details of that employee. also fetching details of employee from the database.

[android-developers] Cant go back to previous page from webview page.

2009-02-02 Thread Komal
Hi, I am developing simple RSS Reader kind of application.In my applicaion i cant go back from Webview page to previous page.i can go back from all pages except the page where i have used Webview.What could be the reason?why i cant go back? Thanx. --~--~-~--~~~---~--~