Re: [android-developers] About how to make new buttons in a row?

2010-04-13 Thread Prathamesh Shetye
Add a TableRow before the buttons Sent from my Android (on Moto Milestone) On Apr 12, 2010 11:18 AM, "xlshe" wrote: Hi all, I want to create three button on the layout. But the default align of the buttons is in a column like: Button1 Button2 Button3 But I want to the three buttons align in a

[android-developers] Re: About how to make new buttons in a row?

2010-04-13 Thread Prathamesh Shetye
try this //Add Your Buttons Here On Apr 12, 10:47 am, xlshe wrote: > Hi all, > > I want to create three button on the layout. But the default align of > the buttons is in a column like: > Button1 > Button2 > Button3 > But I want to the three buttons align in a row in ord

[android-developers] Android App Presentation

2010-04-13 Thread Prathamesh Shetye
I wanted to make a video presentation of my android application. i know i can make the presentation by holding a camcorder in front of the screen and give walkthrough the application. But is there any other way this can be done, something on the lines of JingProject for windows wherein you can reco

[android-developers] Disabling records in a List View

2010-04-18 Thread Prathamesh Shetye
I have a list view which is populated via records from the database. Now i have to make some records visible but unavailable for selection, how can i achieve that? here's my code public class SomeClass extends ListActivity { private static List products; private DataHelper dh;

[android-developers] Re: Disabling records in a List View

2010-04-18 Thread Prathamesh Shetye
Thanks Mark, I'll try it out. Cheers! On Apr 18, 6:20 pm, Mark Murphy wrote: > Prathamesh Shetye wrote: > > I have a list view which is populated via records from the database. > > Now i have to make some records visible but unavailable for selection, > > how can i

[android-developers] Re: Disabling records in a List View

2010-04-18 Thread Prathamesh Shetye
Hi Mark, Here's what I did My Existing Class extending ListActivity / ***/ public class LifeProducts extends ListActivity { private static List products; private static List active

[android-developers] Re: Disabling records in a List View

2010-04-18 Thread Prathamesh Shetye
never mind, solved it, cheers mate! On Apr 18, 8:26 pm, Prathamesh Shetye wrote: > Hi Mark, Here's what I did > > My Existing Class extending ListActivity > > / > *** > **