[android-developers] Re: How can you prevent somebody from calling in Android ?

2009-08-02 Thread e-satis
statements in this email are those of the > author solely in their individual capacity, and do not necessarily > represent those of T-Mobile USA, Inc. > > On Jul 30, 12:17 am, e-satis wrote: > > > I want to write a software to allow the parents to set a limit to > > their

[android-developers] How can you prevent somebody from calling in Android ?

2009-07-30 Thread e-satis
I want to write a software to allow the parents to set a limit to their children phone calls. I need to lock some phone capabilities with a password after the limits are reached. I'd like to know how I can block phone calls from being made, and receive. And if it's possible to set a white list f

[android-developers] Is there a way to start updating all apps in a row ?

2009-07-27 Thread e-satis
For now, updating Android apps is a pain : you must go to the android market "my download" section (and not in the "Manage Application" system setting section, which is very counter intuitive), then scroll to each app needing an update, clic on it, run the update, and go back, then clic on the nex

[android-developers] List loading several times

2009-07-23 Thread e-satis
I have a list containing a dozen of item, but takes a lot of time to process because each item has a lot of calculated data. On startup, I create the list once, using a custome ListAdapter while overloading the getView() method. But putting some Logs on getView, it seems that the list is created

[android-developers] Updating an app make it appear twice !

2009-05-20 Thread e-satis
I made a lot of changes to my app : databases scheme, graphics, code, etc. The biggest is the package name that I renamed to a total different one. The applicatgio got the same name and Id in the manifeste.xml file and the apk got the same name, with the same digital signature. Nevertheless, when

[android-developers] Bluetooth sound output

2009-05-15 Thread e-satis
Hello, I just noticed, using the HTC Dream that using a bluetooth headset was really easy for phone calls, but nothing seemed to be available for videos / music sound output. V1.0 limitations are not at fault since when you play a music and start a call, you can hear the music in the headset for

[android-developers] Re: Getting the ID of a ListView row item from a button click

2009-05-12 Thread e-satis
Because I was planing on adding something afterward in it. On Apr 21, 11:48 pm, Marco Nelissen wrote: > Why are you wrapping each checkbox in its own linearlayout? > > On Tue, Apr 7, 2009 at 10:35 AM, e-satis wrote: > > > > > Hello, > > > Each row of my

[android-developers] Re: EditText & Tabhost problem

2009-04-27 Thread e-satis
OK, great, I wasn't sure it would be. Sometimes, it's just you missing a point. Sadly, I strongly needed that kind of layout, but I guess I will have to way the next update. Is there a way to force compatibility check while installing an apk (like with the firefox extension) so i can make 2 vers

[android-developers] Re: Trying to understand TabHost source code

2009-04-27 Thread e-satis
Swell, this has been reported as a bug : http://code.google.com/p/android/issues/detail?id=2516 On Apr 24, 1:28 pm, e-satis wrote: > Hello, > > I manage to find this post right after trying to solve something like > this : > > http://groups.google.com/group/android-develo

[android-developers] Re: EditText & Tabhost problem

2009-04-24 Thread e-satis
Actually this is even stranger because when you use the arrow key from the keyboard and get the focus to the textview from the tab view, it does not take the focus back. Here is the XML file : http://schemas.android.com/apk/res/ android" android:orientation="vertical" android:layout_wi

[android-developers] Re: Trying to understand TabHost source code

2009-04-24 Thread e-satis
Hello, I manage to find this post right after trying to solve something like this : http://groups.google.com/group/android-developers/browse_thread/thread/f3fdd1eb1726/0d28c51a6b9ffdfe?lnk=gst&q=tab+focus#0d28c51a6b9ffdfe Apparently, tabs seems to still the focus of TextView that are not pa

[android-developers] Re: Getting the ID of a ListView row item from a button click

2009-04-21 Thread e-satis
Solved it the same way than in http://groups.google.com/group/android-developers/browse_thread/thread/16e2f50d9a46823a/fc448b80b6ae29cc?lnk=gst&q=e-satis, adding the id to the view manually. On Apr 7, 7:35 pm, e-satis wrote: > Hello, > > Each row of my view look like th

[android-developers] Re: Null pointer exception while using setOnClickListener

2009-04-21 Thread e-satis
// set the arrow button click listener to navigate in depth in the node list arrow.setOnClickListener(arrow_button_on_click_listener); return v; } } On Apr 7, 8:56 pm, e-satis wrote: > My row layout is in a separate XML. It appears that findViewById only >

[android-developers] [SOLVED] Null pointer exception while using setOnClickListener

2009-04-07 Thread e-satis
, e-satis wrote: > Update : setContentView first and before all, checked :-) > > On 7 avr, 20:09, e-satis wrote: > > > Update : Reading other posts, I tried to trash the R.java file but it > > was not the cause. > > > On 7 avr, 19:48, e-satis wrote: > > >

[android-developers] Re: Null pointer exception while using setOnClickListener

2009-04-07 Thread e-satis
Update : setContentView first and before all, checked :-) On 7 avr, 20:09, e-satis wrote: > Update : Reading other posts, I tried to trash the R.java file but it > was not the cause. > > On 7 avr, 19:48, e-satis wrote: > > > Hi, > > > My java code look like this

[android-developers] Re: Null pointer exception while using setOnClickListener

2009-04-07 Thread e-satis
Update : Reading other posts, I tried to trash the R.java file but it was not the cause. On 7 avr, 19:48, e-satis wrote: > Hi, > > My java code look like this : > >         // right_arrow button >         ImageButton arrow_button = (ImageButton)findView

[android-developers] Null pointer exception while using setOnClickListener

2009-04-07 Thread e-satis
Hi, My java code look like this : // right_arrow button ImageButton arrow_button = (ImageButton)findViewById (R.id.arrow); arrow_button.setOnClickListener(new OnClickListener() { public void onClick(View v) { ((View)v.getParent().getParent()).

[android-developers] Getting the ID of a ListView row item from a button click

2009-04-07 Thread e-satis
Hello, Each row of my view look like that : http://schemas.android.com/apk/res/ android" android:id="@+id/row_layout" > When I click on the ImageButton "arrow", I trigger a method than need the id of the row to perform. By