[android-developers] Serialization/De-Serialization

2012-10-14 Thread Rajiv Singh
Hi there, I am creating an app to find duplicate files .. i am using ArrayListFile to hold all File Objects. I am creating this arraylist in a service and want to pass this arraylist to another Activity. For this i am serializing the ArrayList to a file :- public void serializeList() {

[android-developers] Re: SMS/MMS Default App source code into Eclipse?

2012-08-29 Thread Rajiv Singh
can u please provide me link to those repositories !! i m also working to modify default sms Application !! On Friday, 11 May 2012 02:34:53 UTC+5:30, Ginzorf wrote: Greetings all, I'm attempting to make some slight modifications to the SMS/MMS application that comes included with Android.

[android-developers] How to create Object in OpenGL ( Problem one object is overlapping on the other object )

2011-09-06 Thread rajiv
Dear all , I am facing one problem in openGL i have drawn two object but i am unable to see the another objects . i have created a disc with one hole on it i want to place it on tower , but when i place the disc I am ubale to see the tower . Please help me out -- You received this message

[android-developers] opengl( how to move the objects )

2011-08-20 Thread rajiv
The problem is switch (e.getAction()) { case MotionEvent.ACTION_DOWN: x=e.getX(); y=e.getY(); requestRender(); break; case MotionEvent.ACTION_UP: a=e.getX(); b=e.getY();

[android-developers] Re: Missing ACTION_POINTER_UP and ACTION_POINTER_DOWN events

2011-08-20 Thread rajiv
Hi I am facing a similar problem what i am doing in my application is I am trying to move the disc from one place to another place switch (e.getAction()) { case MotionEvent.ACTION_DOWN: x=e.getX(); y=e.getY(); requestRender();

[android-developers] opengl( how to move the objects )

2011-08-18 Thread rajiv
Hi friends I am trying to develop the tower of honoi by using android opengl the problem is i need to move the disc from sorce to destination how can i do that in opengl -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] Shape having two sided border

2011-06-16 Thread Rajiv
Use the following shape tag: padding android:left=1dp android:top=0dp android:right=1dp android:bottom=0dp / On Thu, Jun 16, 2011 at 12:06 PM, Sapna Srivastav sapna.ari...@gmail.comwrote: Hi all. I would like to create a layout having a

[android-developers] unable to connect to the repository

2010-12-16 Thread rajiv
hi i have downloaded eclipse from eclipse if i tried to install adt pluggin it is saying unable to connect to repository please help me -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Set wallpaper as background

2010-06-03 Thread Rajiv
You can also do it as: WallpaperManager wlp = WallpaperManager.getInstance(*this*); Drawable d = wlp.getDrawable(); textView.setBackgroundDrawable(d); Regards, Rajiv On Thu, Jun 3, 2010 at 11:47 AM, Ericson, Anders anders.eric...@sonyericsson.com wrote: Hi, In your AndroidManifest.xml

Re: [android-developers] Re: List of all instantiated Activities

2010-06-03 Thread Rajiv
(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(...); } 4) You can get All Activities by using Handler getActivity(). Regards, Rajiv On Thu, Jun 3, 2010 at 2:39 PM, Ted Neward ted.new...@gmail.com wrote: Assume I have an app that, although

Re: [android-developers] Problem when turning the phone

2010-06-03 Thread Rajiv
to add *android:screenOrientation=portrait* to the particular activity in the manifest file. Ex. activity android:name=.SomeActivity android:label=@string/app_name android:screenOrientation=portrait Regards, Rajiv On Thu, Jun 3, 2010 at 6:02 PM, Patrick

Re: [android-developers] Handling Orientation Changes that occur in another Activity

2010-06-03 Thread Rajiv
Hi Jeff, I think your Browser won't get refressed. You need to make changes in *onConfigurationChanged* in that Activity. Regards, Rajiv On Thu, Jun 3, 2010 at 6:41 PM, Jeff jeff.th...@gmail.com wrote: I am having an interesting problem and would appreciate any advice. My app uses WebView

Re: [android-developers] Handling Orientation Changes that occur in another Activity

2010-06-03 Thread Rajiv
//set Content to the Browser } Regards, Rajiv On Thu, Jun 3, 2010 at 6:54 PM, Jeff Thorn jeff.th...@gmail.com wrote: Hi Rajiv, What changes should I make? I am saving the state in onSaveInstanceState and I am restoring the state in onCreate. I would think that the Bundle I saved the state

Re: [android-developers] Regarding enter key on virtual keyboard

2010-06-03 Thread Rajiv
super.onKeyDown(keyCode, event); } } If you implement in this way, i think you will got your desired result. Let me know if you still have doubt. Regards, Rajiv On Thu, Jun 3, 2010 at 7:17 PM, ameya dandekar ameya...@gmail.com wrote: Hi, I am currently working on sdk 1.5, in which i want capture

Re: [android-developers] Re: Deleting An Application with ContentProvider Other Applications not working

2010-03-24 Thread Rajiv
Hi Kantesh, Thanks for the reply. Yes i have used the cursor in the following way: Uri allTitles = Uri.*parse*(com.sky.android.project.projectname/data ); Cursor c = managedQuery(allTitles, *null*, *null*, *null*, username desc); c.close(); Regards Rajiv On Tue, Mar 23, 2010

[android-developers] Deleting An Application with ContentProvider Other Applications not working

2010-03-23 Thread Rajiv
but it also not working. Let me know how to overcome with these situation, Or any other way to share the data. Regards, Rajiv -- 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

[android-developers] Launching another application through the current application

2010-01-06 Thread Rajiv
this in android or any other way to solve this problem ?? Regards, Rajiv -- 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

[android-developers] regarding android screenshot source code

2009-03-19 Thread rajiv
hello.. we are trying to use the screen shot source code in our project, we tried to compile screenshot code on eclipse, there is a write function used which uses renderd image as one of its parameter , but the one which is being passed is buffered image, and we are getting an error .. so

[android-developers] Android Platform Profiling

2009-02-10 Thread rajiv
Hi Everyone I have successfully brought up a OMAP24240 target running Android with YAFFS2 and UBIFS file systems. I am now trying to identify the performance overheads associated at every level like the application, file system, DVM, File Translation Layer, Linux IO scheduler etc. I am primarily