Re: [android-developers] Eclipse plugins for SQLite3 and project import

2014-01-13 Thread Passion Android
cool sounds great..


On Mon, Jan 13, 2014 at 6:29 PM, Mike mikercar...@gmail.com wrote:

 Hi,

 These are some plugins I made a while back and decided to release them
 free to anyone who needs them.  The Eve plugin imports android projects and
 all their dependencies automatically.  The Walle plugin lets you view and
 run queries against an SQLite3 database on an android device.  Here are the
 links, check out the features:

 www.doubletimesoft.com/software/eve
 www.doubletimesoft.com/software/walle

 Thanks

 --
 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+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[android-developers] Getting problem in adding GSON Jar library

2012-02-21 Thread Passion Android
I'm trying to use GSON in my project, but my application is crashing,
with logcat saying that com.google.gson.Gson cannot be found. I've put
import com.google.gson.Gson on my class files, I have gson in my
package explorer, and added it by Right click - build path - add
libraries. It also shows up in Project-properties-java build path-
libraries tab-gson. What have I done wrong?
Rickky
San Jose

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Parse JSON using GSON library

2012-02-18 Thread Passion Android
this is my JSON --  {\id\:12,\name\:12,\status\:\ok\,
\volumes\:[{\id\:17592,\name\:\root\,\status\:\ok\}]}
i want to parse it by using GSON how to do it just give me the demo.If
u provide me the sample code it will be easier.
Thanks
Rickky Litao

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: Facebook Android Application

2012-02-16 Thread Passion Android
Thanks Mokarul

On Thu, Feb 16, 2012 at 3:59 PM, moktarul anam mokta...@gmail.com wrote:

 Hi Rickky

 There are two way to create facebook apps on android
 1.install android sdk and use there api( dont think this s good idea)
 2.. user facebook api for getting all contact (friends name, email,
 phone number etc) then parse there api and then enjoy


 Moktarul

 On Feb 15, 11:16 am, Passion Android passion4andr...@gmail.com
 wrote:
  I want to create an facebook android application where i want to
  create a option ..by press it will show all the phone numbers of the
  friends who are in my friend list.so how to do this please give the
  idea.
  Thanks .
  Rickkky

 --
 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+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: How to Open app from other App

2012-02-14 Thread Passion Android
anyways thanks TreKing Its Not the answar.My question Open an Application
From Current Application.
Thaks For Giving effort to my question.

On Thu, Feb 9, 2012 at 12:18 AM, Passion Android
passion4andr...@gmail.comwrote:

 How to open a app from another  App.plz guide me i have used
 final Intent intent = new Intent(Intent.ACTION_MAIN, null);

  intent.addCategory(Intent.CATEGORY_LAUNCHER);
final ComponentName cn = new
 ComponentName(packagename,
 class);
intent.setComponent(cn);

  intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity( intent);

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Facebook Android Application

2012-02-14 Thread Passion Android
I want to create an facebook android application where i want to
create a option ..by press it will show all the phone numbers of the
friends who are in my friend list.so how to do this please give the
idea.
Thanks .
Rickkky

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] How to Open app from other App

2012-02-11 Thread Passion Android
How to open a app from another  App.plz guide me i have used
final Intent intent = new Intent(Intent.ACTION_MAIN, null);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
final ComponentName cn = new 
ComponentName(packagename,
class);
intent.setComponent(cn);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity( intent);

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] How to create multiple ListViews with fragments in Android

2012-02-11 Thread Passion Android
 how to open a new application from the current application?
please help.i had tried with intent but its not working.if possible please
send me the code snippets.

On Thu, Feb 9, 2012 at 12:23 PM, Abhishek Kumar Gupta
akgaec2...@gmail.comwrote:

 Actually I want to create three listviews with the help of fragments. Is
 it possible? if possible then please give some reference. Any help in this
 regard will be well appreciated.

 --
 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+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Re: i want to create simple android appln

2012-02-11 Thread Passion Android
Follow this tutorial.
 http://developer.android.com/resources/tutorials/hello-world.html
you can ask these question on stack developer.

On Thu, Feb 9, 2012 at 2:05 PM, Ali Chousein ali.chous...@gmail.com wrote:

  i want to create simple android appln. how can i do it?

 Follow this tutorial:
 http://developer.android.com/resources/tutorials/hello-world.html
 (And yes, correct spelling is damn important. I would never hire
 someone who doesn't care about correct spelling!)

 -
 Ali Chousein
 http://www.codeproject.com/KB/android/PayGol-Android.aspx
 http://weatherbuddy.blogspot.com | http://twitter.com/weather_buddy
 http://geo-filtered-assistant.blogspot.com
 https://marketplace.cisco.com/apphq/products/994

 --
 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+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en