[android-developers] Help finding the Message Reference

2013-05-09 Thread Yoav sagman
Hi all, I'm trying to find on the android where the PDU Message Reference is store. When the mobile send an SMS is use the Message Reference to coordinate the SMS-STATUS-REPORT to the right send SMS. When I'm looking on the SMSMMS table i'm not able to find the Message Reference, there is msg_id

[android-developers] How to change the RatingBar style from the code

2011-11-23 Thread yoav bbb
Hey I have 2 styles for my RatingBar (difference is in the star image). I have an activity with a rating bar in it. I want the ratingbar to use one of the styles depending on the application state (e.g. flag is true/flase). Is there any way to do it -- You received this message because you

[android-developers] Listviewitem height does not update to wrap the content

2011-11-08 Thread yoav bbb
I have a list activity with listviewitem layout. The listviewitem contains a textview, the porblem is that if the string in the textview is too long - e.g. 3 lines, then the listviewitem height does not change to wrap the content. I am using adapter for the listview. The problem happens only when

[android-developers] Re: Tab and TabsHost sharing data issue

2011-08-08 Thread yoav bbb
Someone has any ideas? I understood there is a way all tabs under 1 activity? like view? how to do it? On 8 אוגוסט, 06:55, yoav bbb wrote: > Hello > I have an application with 1 tabHast that runs 3 tab activities inside > it. > In 1 tab there are EditText boxes that user fill

[android-developers] Re: EditText text validation

2011-08-08 Thread yoav bbb
So. The validate function must be called when ressing a button? no option to call the function when user leaves the textbox - to the backgour or to another control? On 9 אוגוסט, 06:24, TreKing wrote: > On Sun, Aug 7, 2011 at 10:57 PM, yoav bbb wrote: > > Where is the hook for the

[android-developers] EditText text validation

2011-08-08 Thread yoav bbb
Hello I have an EditText box that user fills with its text. I need to run a simple Validate() function on its data when the user leaves this text box and alert him if the input String is incompatible. Where is the hook for the validate function? Thanks -- You received this message because you ar

[android-developers] Tab and TabsHost sharing data issue

2011-08-08 Thread yoav bbb
Hello I have an application with 1 tabHast that runs 3 tab activities inside it. In 1 tab there are EditText boxes that user fill. In the TabHost there is a button - when user presses it - I have to get the text the user entered in the EditText boxes - - even if it is not the current tab. Any ide

[android-developers] Create my own lock screen

2011-07-19 Thread yoav bbb
Hello, I am trying to crate my own new lock screen, but I cannot find how to do it, using a new unlock method instead of the regular swipe. Someone recommended using powermanager class, but I could not find a way to use it for this purpose. Any ideas? Any code to refer to? Thanks -- You recei

[android-developers] New program to answer an incoming call

2011-07-12 Thread yoav bbb
I answer the call? Thanks Yoav -- 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] Lock screen

2011-07-12 Thread yoav bbb
Hello, Is it possible to change the default lock screen and use one of my own? with another way to unlock it? Yoav -- 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@google

[android-developers] Re: application to run first time device is turned on

2010-02-27 Thread Yoav
Thanks for the info Jeffrey and Dianne. -- 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+unsubscr...@go

[android-developers] application to run first time device is turned on

2010-02-26 Thread Yoav
I'm developing an application that will come installed on a device, not an application the user will download from the market place. Thanks for any insights, Yoav -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to

[android-developers] Re: Additional fonts for use with Webkit

2009-08-28 Thread Yoav
In case someone is interested, here is what I figured out: Adding fonts to the SDK allows them to be viewed in the browser. Also, applications can use them directly without having to load the font from an asset. 1) Add the font file android_1.5r2/frameworks/base/data/fonts/Comic.ttf 2) Add th

[android-developers] Additional fonts for use with Webkit

2009-08-25 Thread Yoav
Hi, I am interested in displaying web pages with more than the 3 installed fonts. I tried the demo of installing fonts as assets and changing the typeface, but I am not sure if it applies to a Webview. I was able to modify the sdk and install more fonts in frameworks/base/ data/fonts. I can se

[android-developers] Re: Automatic browser?

2008-12-22 Thread Yoav Weiss
ough information about what you're trying > to do to give you a proper answer. Are you trying to display a web > page to the user, or parse data out of it? > > > On Dec 22, 5:37 pm, "Yoav Weiss" wrote: > > Why wouldn't you use WebKit?I need to browse to

[android-developers] Re: Automatic browser?

2008-12-22 Thread Yoav Weiss
Why wouldn't you use WebKit?I need to browse to a page (i.e. fetch the HTML + all related resources), not download a single resource. Can HttpClient do that? On Mon, Dec 22, 2008 at 11:04 PM, Michael wrote: > > Heh, I think that using webkit for this is NOT the right solution. > Were I to do thi

[android-developers] Re: Automatic browser?

2008-12-22 Thread Yoav Weiss
Sergi Velez wrote: > Does HttpClient work for you? > > > http://code.google.com/android/reference/org/apache/http/client/package-summary.html > > --- > sergi.ve...@gmail.com > ["In theory, theory and practice are the same. In practice, they are not."] > >

[android-developers] Automatic browser?

2008-12-22 Thread Yoav Weiss
Hi All, I'm a newbie to Android application development (I'm usually on the Android-platform mailing list). I need to create an app that does automatic browsing. Did someone walk this path before me? Can I get a few hints regarding the browser's API that can enable such an app