[android-developers] Android Bottom Tab Example

2011-06-03 Thread Munish Kapoor
HI Here is the Example of android tab at bottom. http://kandroid.wordpress.com/2011/05/31/tabview-part-5-tab-control-at-bottom-of-app/ Thanks Munish Kapoor -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group,

[android-developers] align title in center

2009-02-22 Thread Munish
Hi I want to allign the TITLE of my application in center. I had done the same by giving spaces in the string that i want to set in title. but if the UI size changes then the alignment also changes. So i want to know that is there any method by which we can set the title in center irrespective

[android-developers] add files to data/data folder of android phone

2009-02-19 Thread Munish
Hi I tried to access the data from "data/data" folder from emulator memory and it worked fine but when i created the same structure in android phone then 1). it didn't gave me permissions to create the directory "files" in phone memory ( data/data/package name/) 2) any how i created the (data/d

[android-developers] Re: Can we call R.java acreoss the packages?

2009-02-15 Thread Munish
To access it from another package > you do the same thing that you would do with any other public class > that you wish to access outside of the package in which it resides: > either fully-qualify it when referring to it (Pack2.R.layout.xxx) or > import it (import Pack2.R). > > On F

[android-developers] Can we call R.java acreoss the packages?

2009-02-15 Thread Munish
Hi All I have two packages(Pack1 and Pack2) in same project(Proj) When i created the project (Proj) that time Pack1 was created and R.java was there bydefault. Now i created Pack2 in same project(Proj) and want to acess some XML files there, but cant access as when i write "R.layout.xxx" that ti

[android-developers] how to pass data from activity to service through Intent

2009-02-13 Thread Munish
I am trying to pass a string from an activity class to a service class. but cant do the same as service doesnot take arguments of BUNDLE type in onCreate method can anyone pls help me out... --~--~-~--~~~---~--~~ You received this message because you are subscribe

[android-developers] Re: Gallery and setSelection

2009-02-11 Thread Munish
can u pls send the code for ur query? On Feb 12, 7:24 am, Sundog wrote: > I was trying to make clear WHY it didn't fire. Hopefully the person > who solved it before will see this. > > On Feb 11, 6:43 pm, Alexey wrote: > > > > > Well it's pretty clear that event is not firing, my question is how

[android-developers] layout issue......??

2009-02-11 Thread Munish
Hi all I want to make a screen such that all time the data coming through database need to be fixed in pre-designed pattern, i mean i have designed a layout(the code is given below)and in this layout i want to fix the data that i getting from database and the data to be added in view should be

[android-developers] How do we define enum?

2009-02-08 Thread munish
How do we define enum? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: how to add 3-4 items in list view

2009-02-06 Thread munish
hey thanx Marco. On Feb 6, 3:16 pm, Marco Schmitz wrote: > you need to create an xml for each children row. please take a look at > the 14 list source codes inside your api samples. > > greetings, > darolla > > 2009/2/6 munish : > > > > > >

[android-developers] how to add 3-4 items in list view

2009-02-05 Thread munish
Can any one please tell me how to add multiple items (images/text) in list view --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@google

[android-developers] layout problem

2009-02-04 Thread munish
Hi folks Is there any method in all layouts to place the widgets relative to the screen , rather than specifying the x and y co-ordinates, so that when the same application is ported to a device with variations in screen size, there wouldnt be any problem. Please rpl ASAP --~--~-~--~~

[android-developers] layout problem

2009-02-04 Thread munish
Hi folks Is there any method in all layouts to place the widgets relative to the screen , rather than specifying the x and y co-ordinates, so that when the same application is ported to a device with variations in screen size, there wouldnt be any problem. Please rpl ASAP --~--~-~--~~

[android-developers] layout problem

2009-02-04 Thread munish
Hi folks Is there any method in all layouts to place the widgets relative to the screen , rather than specifying the x and y co-ordinates, so that when the same application is ported to a device with variations in screen size, there wouldnt be any problem. Please rpl ASAP --~--~-~--~~

[android-developers] Re: Onclick listener on ListView items

2009-02-04 Thread munish
Thanx pratap On Feb 4, 10:59 am, PRATAP SOLAPUR wrote: > U should implement onItemSelectedListener for list items... > > On 2/4/09, munish wrote: > > > > > > > Hi All > > > I want to set the onclicklistner on the each item to be displayed in &

[android-developers] Onclick listener on ListView items

2009-02-03 Thread munish
Hi All I want to set the onclicklistner on the each item to be displayed in ListVIew. Can anyone help me out ASAP. The code i have written is package munish.android; import android.app.ListActivity; import android.os.Bundle; import android.widget.ArrayAdapter; public class List extends List