[android-developers] security exception using intent in tab.-ava.lang.SecurityException: Requesting code from com.android.phone

2013-06-15 Thread JossieKat
when i use intent to call using phone it does it. from my activity Intent intentphone = new Intent(); intentphone.setAction(Intent.ACTION_CALL); String uriString = tel: + 555.trim() ; intentphone.setData(Uri.parse(uriString)); startActivity(intentphone); no

[android-developers] Re: geofencing api-share geofence

2013-06-08 Thread JossieKat
Lew, mind your manners... and google is not god an some critisim is in order. thier geo-fence api is too limited. my opinion, On Thursday, June 6, 2013 10:30:16 PM UTC+3, Lew wrote: JossieKat wrote: Hi Marty. i thought about it but gcm misses the point . i don't need messages to be send

[android-developers] Re: geofencing api-share geofence

2013-06-08 Thread JossieKat
allowing anyone who has access to the database access to the specific paired users data. That is the next hurdle! On Thursday, June 6, 2013 2:26:48 PM UTC-5, Lew wrote: JossieKat wrote: I looked at the site brfore. All i saw are geo fences created by the Single user.not multiple users. Share

[android-developers] Re: geofencing api-share geofence

2013-06-06 Thread JossieKat
I looked at the site brfore. All i saw are geo fences created by the Single user.not multiple users. Share Same geo fence. It does not answer my question Thankx for the reply. Jossie -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: geofencing api-share geofence

2013-06-06 Thread JossieKat
: Jossie, I'd be interested in this as well. The only option I know of currently is to implement GCM so the devices can sync utilizing that functionality. Marty On Thursday, June 6, 2013 2:16:30 AM UTC-5, JossieKat wrote: I looked at the site brfore. All i saw are geo fences created

[android-developers] geofencing api-share geofence

2013-06-05 Thread JossieKat
once i made a geofence can i share it with another user? suppose I created a geofence...can another user with proximity see it and get notified? can i send him/share info in the same fence. regards, joseph. -- -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Alert dialog streches single button

2013-04-01 Thread JossieKat
when i use builder to build a alertdilaog, setting a single button stretches it width to the dialog. i think it is a design mistake.make a normal sized button in the middle of he dialog the windows does? or should I use custom dialog.? -- -- You received this message because you are

[android-developers] detect which view created the gesture. attach gesture listener to view.

2013-03-19 Thread JossieKat
I need to add gesture detection to my views.. I need to know if the user swiped his finger to what direction (up down left right) or what what button to which button.? and on what view(I use buttons)? (example detect if on phone number if the user swiped from button 1 to button 2.) how to

[android-developers] frame detection - face rect has negative coordinates.

2013-02-10 Thread JossieKat
I started using face detection using Camera TexureView after I set the listner antrted face detection I had some issues when face is recognised, face array length is 1 *Face class at has several fields as null like left eye and right eye points * *rect has bottom and top negative coordinates.*

[android-developers] AR (augmented reality) and open gl.

2013-01-27 Thread JossieKat
I would like to know if there is simple example of overlaying open gl above camera stream to create AR I managed to draw graphics above camera stream using canvas but could not do it with open gl . -- -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Draw on top of camera frames.-AR

2011-12-01 Thread JossieKat
I 'd like to know if there is a simple code that does a) stream a camera frames/video at a certain rate, b) draw animation /graphics on top of this camera frame stream and present the final outcome on the screen.. a simple AR application.using android 2.1 I don't know how to combine those