[android-developers] Re: How to custom my own home screen?

2009-02-12 Thread Scynasty
addcategory android:name=android.intent.category.HOME / in the intent-filter of the activity you want as the home screen. when the home button is clicked it will ask which home screen you want to run. On Feb 11, 9:13 pm, water compuwa...@gmail.com wrote: Android phone has a default home

[android-developers] Re: ImageView centering/ rotating issue

2009-02-12 Thread Scynasty
if you set the size of the imageview larger than the screen size it won't get cropped. On Feb 11, 3:19 pm, oguen oguen.bi...@googlemail.com wrote: Hi , is it possible to set the center of an ImageView without using paddings? What I'm trying to do is, to place a part of an image outside the

[android-developers] Re: what is image file format of images taken from camera

2009-01-22 Thread Scynasty
jpeg On Jan 22, 5:19 am, jalandar jagtap...@gmail.com wrote: what is image file format of images taken from camera, and images provider and images which are displayed in Picture app(android's inbuilt app ) anybody clear me in detail. Thank you

[android-developers] Re: How to switch from Activity to ListActivity ?

2009-01-22 Thread Scynasty
you have to create another class which extends listadapter either in the same java file or a new one. On Jan 22, 8:02 am, Nico nicolas.d...@gmail.com wrote: Hi, I have a main class derived from Activity, I need a ListActivity (displayed when the menu button is clicked). How can I proceed. I

[android-developers] Re: Does Android Browser support right menu - open with ?

2009-01-22 Thread Scynasty
there is a way to run a two finger click like the one on macs. if you run an if statement in ontouchevent if (event.getSize .6) { } this will get the size of the touch to the screen. placing two fingers on the screen makes the screen see one big finger even if the fingers are not touching.

[android-developers] Re: Help required: ListView

2009-01-22 Thread Scynasty
you could try running an onitemselected with a setfocus to the button so when an item is selected focus is placed to the button. On Jan 22, 2:17 am, Don Rules don.rulz.wo...@gmail.com wrote: Hi Folks, I have a list view, in which each of the list item contain a TextView and a button. when i

[android-developers] Re: disable scrolling

2009-01-22 Thread Scynasty
ScrollView.setVerticalScrollBarEnabled(false); On Jan 22, 1:15 pm, ena enu1...@gmail.com wrote: Hi All, Im using scrollview...i need to disable scrolling bar on particular time ..is it possible??plz help me out... --~--~-~--~~~---~--~~ You received this message

[android-developers] How to set multiple set different actions to one menu item

2009-01-21 Thread Scynasty
I am having trouble setting one menu item/button to run different actions based on other actions currently running(ie having the button toggle actions). what I am trying to do is have a menu item to toggle wifi on and off but when I try to run if/else statements on the menuitem click it force