[android-developers] Identify Unique Objects in java.........

2011-07-19 Thread Jaswant
Is there any Java expert who can solve this issue:- How to put UNIQUE objects in any Collection(List/Set)? NOTE-Two objects are UNIQUE iff there corresponding members have same values . waiting 4 optimum solution... Please dont give loopy solutions... Thanks in advance Jaswant Panwar

[android-developers] Re: Array Adapter Problem

2011-07-08 Thread Jaswant
hey he is using a String variable not String array? that's the problem and nothing else -- 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,

Re: [android-developers] Need help with a Spinner

2011-07-08 Thread Jaswant Panwar
hey what's the problem tell me may be i help u.. On Thu, Jul 7, 2011 at 6:06 PM, shwetha NV shwetha.andr...@gmail.comwrote: Hi All, Docs anyone is having idea about kakaotalk application? its free for android devices. I would like to know technology used implementation -- You

[android-developers] Re: [android] app does not show up after wake up

2011-07-07 Thread Jaswant
add the launcher intent filter in your activity which receive broadcast notifications... -- 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

[android-developers] Re: Array Adapter Problem

2011-07-07 Thread Jaswant
Adapter always accept a String array or a List not just String . So your String items=--- must be like String[] items={ m_addItemText.getText().toString()}; Enjoy and never forget to say '*Jai Hind*'. -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Need help with a Spinner

2011-07-07 Thread Jaswant
HI just do following: Create an ArrayList say list when Add button is click call list.add(editext content); and then create An ArrayAdapter with items taken from list then call spinner.setAdapter... For Clear call list.clear(); and then create An ArrayAdapter with items taken from list then call

[android-developers] Re: Which button is clicked in my activity

2011-07-05 Thread Jaswant
It's simple: call setonClickListener() method for each button u'hv created. and in onClick() method u can find clicked button by checking its text eg: void onClick(View v) { MyCustButton btn=(MyCustButton )v; if(btn.getText().toString().equals(blabla)) } --

[android-developers] Re: android facebook.

2011-07-05 Thread Jaswant
hi Just turn off the single sign-in. In Facebook.java class that comes with facebook sdk there is method shown below public void authorize(Activity activity, String[] permissions, int activityCode, final DialogListener listener) { boolean singleSignOnStarted = false;

[android-developers] Re: Which button is clicked in my activity

2011-07-05 Thread Jaswant
y u r creating new onClickListener every tym??? just implement OnClickListener explicitaly once and do whatever u want in onClick() method. like: public class MyActivity extends Activity implements OnClickListener { void onCreate(.) {

[android-developers] Re: Not trusted server certificate

2011-07-05 Thread Jaswant
as u are using https u need to manually varify certificates: use this link get an idea and if steal got problem tell i'll solve ur problem http://androidforums.com/android-applications/60650-send-data-https-android-application.html Enjoy and never forget to say Jay Hind -- You received this