[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 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 > screen and animate

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

2009-02-12 Thread Scynasty
add 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 wrote: > Android phone has a default home screen,a clock in the middle,and four > icons in the bottom, > i want to c

[android-developers] Re: disable scrolling

2009-01-22 Thread Scynasty
ScrollView.setVerticalScrollBarEnabled(false); On Jan 22, 1:15 pm, ena 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 because you ar

[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 wrote: > Hi Folks, > I have a list view, in which each of the list item contain a TextView and a > button. > when i click the button, the

[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. m

[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 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 don't understand

[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 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 --~--~-~--~~~---~--~~ You rece

[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 clos