Re: [android-developers] HI ALL

2012-07-28 Thread VIJAYAKUMAR M
Hel
On Sat, Jul 28, 2012 at 3:03 PM, aparna rani indela@gmail.com wrote:

 Hi all now i am implementing Website design. this is my website
 http://www.retigence.com
 Can you please give me feed back how its looking...
 And also give me the some tips to increase the google page ranking

 Thanking you,


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




-- 




-
Thanks  Regards,
M VIJAYAKUMAR
|| http://iamvijayakumar.blogspot.com

-- 
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] sending json array to wcf

2012-07-23 Thread VIJAYAKUMAR M
Hello,

Try this..

JSONObject jObject = null;
String Url = Here ur wcf url;
try {
HttpPost request = new HttpPost(Url);
ListNameValuePair postParameters = new ArrayListNameValuePair();

JSONArray datjsonArray = new JSONArray();
JSONObject obj;
JSONObject jsonArray = new JSONObject();
for(int i = 0; ilist.length; i++){
obj = new JSONObject();
obj.put(name, list[i].name);
obj.put(age, list[i].age);
datarr.put(obj);
}

jsonArray.put(user, datjsonArray);
postParameters.add(new BasicNameValuePair(collection,
jsonArray.toString()));
UrlEncodedFormEntity entity = new UrlEncodedFormEntity(postParameters);
request.setEntity(entity);
HttpResponse response = getThreadSafeClient().execute(request);
entityResponse = response.getEntity();
result = EntityUtils.toString(entityResponse, HTTP.UTF_8);


On Mon, Jul 23, 2012 at 2:47 PM, Meena Rengarajan meenasoft...@gmail.comwrote:

 Even send me too , please am too searching for a long time .

 Thanks ,
 Meena

 On Wed, Jul 18, 2012 at 2:19 PM, דבורי מאיר vdv...@gmail.com wrote:

 hi all,
 I'm trying to send json array to wcf but getting bad request.
 please, could anyone send me a work example of the two sides-android and
 wcf?
 i'm spending several days with searching and find nothing, please help
 me!!!
 thanks in advance

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




-- 




-
Thanks  Regards,
M VIJAYAKUMAR
Contact : 09048382536 || http://iamvijayakumar.blogspot.com

-- 
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] Android Blog

2012-06-29 Thread VIJAYAKUMAR M
http://iamvijayakumar.blogspot.in/

-- 




-
Thanks  Regards,
M VIJAYAKUMAR

-- 
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] Android: Leaked IntentReceiver exception is being thrown even though I call unregisterReceiver

2011-10-31 Thread vijayakumar M
Hi Friends,

I don't understand why I'm getting this exception when hitting the back
button. I have the IntentReceiver registered in the onCreate method and it
is supposed to be unregistered in the onPause method. My Log.w() call
inside of the onPause method leads me to believe that the
unregisterReceiver() method is being called, but I am getting this
exception still... please any help me

-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/

-- 
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] stack overflow error in listview android

2011-10-24 Thread vijayakumar M
Check u'r XML file... may be error in XML...


On Mon, Oct 24, 2011 at 6:37 PM, vani reddy vani.reddy.bl...@gmail.comwrote:


 ll=(LinearLayout)findViewById(R.id.listView);

  linflater = (LayoutInflater)
 getSystemService(Context.LAYOUT_INFLATER_SERVICE);
  search_interest =(EditText)findViewById(R.id.search_interest);
 EditText search_location
 =(EditText)findViewById(R.id.search_interest);
  names.add(Linux);
  names.add(Windows7);
  names.add(Eclipse);
  names.add(Suse);
  names.add(Ubuntu);
  names.add(Solaris);
  names.add(Android);
  names.add(iPhone);
  currentView = linflater.inflate(R.layout.listview, null);
  list1 =(ListView)currentView.findViewById(R.id.list);

  // list1.setAdapter(arrayAdapter);
 //list1.setAdapter(new ArrayAdapterString(SearchClass.this,
 android.R.layout.simple_list_item_1, names));


 list1.setAdapter(new ListItemsInterest(SearchClass.this,names));
  previousView = linflater.inflate(R.layout.listview, null);
  list2 =(ListView)previousView.findViewById(R.id.list);
  String[] namesLOCATIOn = new String[] { LOCATION , ,
 Eclipse, Suse,
 cc, , ,
 iPhone};
 //list2.setAdapter(new ArrayAdapterString(SearchClass.this,
 android.R.layout.simple_list_item_1, namesLOCATIOn));
 list2.setAdapter(new ListItemsLocation(SearchClass.this,namesLOCATIOn));

  search_interest.setOnFocusChangeListener(new View.OnFocusChangeListener()
 {
 @Override
 public void onFocusChange(View v, boolean hasFocus) {

 if(hasFocus)
 {
 ll.removeView(currentView);
 ll.removeView(previousView);
 ll.addView(currentView);
 }
 else{
  ll.removeView(previousView);
 ll.removeView(currentView);
 ll.addView(previousView);
 }
 }
 });


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




-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/

-- 
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 Blocking Swear Words in android?

2011-09-28 Thread vijayakumar M
Hi ,
how to Blocking Swear Words in android?. please give any example or refer
link.

-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/

-- 
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 Blocking Swear Words in android?

2011-09-28 Thread vijayakumar M
Hello Mr.Kristopher

excellent answer.

On Wed, Sep 28, 2011 at 6:31 PM, Kristopher Micinski krismicin...@gmail.com
 wrote:

 Not an android question, a java question, if you mean putting this in your
 apps.  If you mean filtering through all text in the system you require
 custom firmware.

 Google blocking swear words in java

 tl;dr: easy solution: do a string replace s/evilslang/lessevilslang

 On Wed, Sep 28, 2011 at 8:22 AM, vijayakumar M 
 iamvijayaku...@gmail.comwrote:

 Hi ,
 how to Blocking Swear Words in android?. please give any example or refer
 link.

 --




 Nobody can go back and start a new beginning, but anyone can start today
 and make a new ending
 -
 Thanks,
 Regards,
 νιנαソαkum@r M
 BloG:http://iamvijayakumar.blogspot.com/


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




-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/

-- 
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 can i create an option menu button at status bar

2011-09-12 Thread vijayakumar M
use horizontal scroll view. and try it.

On Tue, Sep 13, 2011 at 10:39 AM, huangtiejun huangtiejun2...@gmail.comwrote:

 **

 Hi,All

 How can i create an option menu button at status bar, The cell like
 button after [Recent Apps] .


  Thanks for your time.

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




-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/
Mob.No:09048382536(Kerala)
Mob.No:09751076707(TN)

-- 
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 display Smiley/Emoji in android edittext?

2011-08-26 Thread vijayakumar M
Hi guys ,

how to display Smiley/Emoji in android edittext? please help me friends.

-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/

-- 
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: how to display Smiley/Emoji in android edittext?

2011-08-26 Thread vijayakumar M
ok..pskink,

then how to add multible emoji in edittext?

On Fri, Aug 26, 2011 at 3:15 PM, skink psk...@gmail.com wrote:



 vijayakumar M wrote:
  Hi guys ,
 
  how to display Smiley/Emoji in android edittext? please help me friends.
 
  --
 
 
 
 
  Nobody can go back and start a new beginning, but anyone can start today
  and make a new ending
  -
  Thanks,
  Regards,
  νιנαソαkum@r M
  BloG:http://iamvijayakumar.blogspot.com/

 Use SpannableStringBuilder and its setSpan method

 pskinklder and its setSpan method

 pskink

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




-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/
Mob.No:09048382536(Kerala)
Mob.No:09751076707(TN)

-- 
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: how to display Smiley/Emoji in android edittext?

2011-08-26 Thread vijayakumar M
Hi,


check this below code

 if(position==0){
 spannable = new SpannableString (#xe056;);
 Drawable d =
getResources().getDrawable(em.mThumbIds[position]);
 d.setBounds(0, 0, d.getIntrinsicWidth(),
d.getIntrinsicHeight());
   ImageSpan span = new ImageSpan(d,
ImageSpan.ALIGN_BASELINE);
  spannable.setSpan (span,mOutEditText. getText
(). length (),mOutEditText. getText (). length () ,
Spannable.SPAN_INCLUSIVE_EXCLUSIVE);
 }
 else if(position==1){
spannable = new SpannableString
(#xe057;);
Drawable d =
getResources().getDrawable(em.mThumbIds[position]);
d.setBounds(0, 0, d.getIntrinsicWidth(),
d.getIntrinsicHeight());
  ImageSpan span = new ImageSpan(d,
ImageSpan.ALIGN_BASELINE);
 spannable.setSpan (span,mOutEditText.
getText (). length (),mOutEditText. getText (). length () ,
Spannable.SPAN_INCLUSIVE_EXCLUSIVE);
}

else if(position==2){
   spannable = new SpannableString (#xe058;);
   Drawable d =
getResources().getDrawable(em.mThumbIds[position]);
   d.setBounds(0, 0, d.getIntrinsicWidth(),
d.getIntrinsicHeight());
 ImageSpan span = new ImageSpan(d,
ImageSpan.ALIGN_BASELINE);
spannable.setSpan (span,mOutEditText.
getText (). length (),mOutEditText. getText (). length () ,
Spannable.SPAN_INCLUSIVE_EXCLUSIVE);
   }

mOutEditText.setText (spannable);

On Fri, Aug 26, 2011 at 3:27 PM, skink psk...@gmail.com wrote:



 On Aug 26, 11:49 am, vijayakumar M iamvijayaku...@gmail.com wrote:
  ok..pskink,
 
  then how to add multible emoji in edittext?
 
 
 
 
 
  On Fri, Aug 26, 2011 at 3:15 PM, skink psk...@gmail.com wrote:
 
   vijayakumar M wrote:
Hi guys ,
 
how to display Smiley/Emoji in android edittext? please help me
 friends.
 
--
 
Nobody can go back and start a new beginning, but anyone can start
 today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/
 
   Use SpannableStringBuilder and its setSpan method
 
   pskinklder and its setSpan method
 
   pskink
 
   --
   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
 
  --
 
  Nobody can go back and start a new beginning, but anyone can start today
  and make a new ending
  -
  Thanks,
  Regards,
  νιנαソαkum@r M
  BloG:http://iamvijayakumar.blogspot.com/
  Mob.No:09048382536(Kerala)
  Mob.No:09751076707(TN)

 Call setSpan multiple times?

 pskink

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




-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/
Mob.No:09048382536(Kerala)
Mob.No:09751076707(TN)

-- 
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: how to display Smiley/Emoji in android edittext?

2011-08-26 Thread vijayakumar M
it's not adding multiple emoji..

ex:
1.if i click position 2 emoji.. it's showing position 2 emoji in edittext..
2. then i click position 3 emoji. old emoji replacing postion 3 emoji
displaying why?


On Fri, Aug 26, 2011 at 4:04 PM, skink psk...@gmail.com wrote:



 On Aug 26, 12:14 pm, vijayakumar M iamvijayaku...@gmail.com wrote:
  Hi,
 
  check this below code
 


 and your question is ...?

 pskink

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




-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/
Mob.No:09048382536(Kerala)
Mob.No:09751076707(TN)

-- 
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 implement android emoji in our apps?

2011-08-23 Thread vijayakumar M
Hi Guys,

how to implement android emoji keyboard in our apps, please any one give me
idea or example?

thnx
urs m.v

-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/

-- 
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] Android ebooks

2011-08-20 Thread vijayakumar M
hi

check this url
http://iamvijayakumar.blogspot.com/2011/01/android-tutorial-free-download-pdf.html


On Sat, Aug 20, 2011 at 12:32 PM, Jupiterz jupiterfo...@hotmail.com wrote:

 Hi everyone,

 Can anyone share Android e books which i can download.

 Many 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




-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/

-- 
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 get android 2.2 capture image path or uri?

2011-08-16 Thread vijayakumar M
Hi Friends,

how get capture image path or uri?in android 2.2.. pls help me friends,

thanks a lots for advance


-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/

-- 
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 get android capture image URI?

2011-08-12 Thread vijayakumar M
Hi Friends,

How to get android camera capture image uri?
any one help me please

Thanks for advance

-- 





νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/

-- 
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] Viewflipper instead of webview it's not working in android?

2011-07-25 Thread vijayakumar M
Hi Friends,

i have list url that url i have load in webview.
if i open apps it will display first url.  then i flip it will load next url
. but now that flipper i not working? why. please help me friends.




XML structure
main.xml
Line.
Viewflipper /
/Line...



webview.xml

LinearLayout xmlns:android=http://schemas.android.com/apk/res/android;
android:layout_width=fill_parent
android:orientation=vertical
android:layout_height=fill_parent

WebView
android:id=@+id/webview
android:fillViewport=true
 android:scrollbars=none
 android:scrollbarAlwaysDrawHorizontalTrack=false
android:layout_width=fill_parent
android:layout_height=fill_parent
/WebView

/LinearLayout

-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/
Mob.No:09048382536(Kerala)
Mob.No:09751076707(TN)

-- 
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] ListView Examples

2011-07-16 Thread vijayakumar M
Check this url
http://iamvijayakumar.blogspot.com/2011/06/xmlresource-parser-with-custem-listiew.html

On Sat, Jul 16, 2011 at 11:30 AM, saurabh kulkarni funwit.saur...@gmail.com
 wrote:

 Can anybody give me custom listview(having 2 or more textviews)
 examples with its listener also working???

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




-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/
Mob.No:09048382536(Kerala)
Mob.No:09751076707(TN)

-- 
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 highlight specific date in calendar view?

2011-07-15 Thread vijayakumar M
Hi Frnds,
I have list of specific date.. then How to highlight that specific date in
calendar view?

Thanks
-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/

-- 
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] Ksoap2

2011-07-13 Thread vijayakumar M
check this url..

http://iamvijayakumar.blogspot.com/2011/06/android-ksoap2-web-service-parsing-data.html

On Wed, Jul 13, 2011 at 3:22 AM, daysaver daysa...@googlemail.com wrote:

 Hello everyone I am new to this group I just wanted to know if anyone
 has any experience with Ksoap2. I have started a new job as an android
 developer and they want me to write a application that uses their soap
 web service. Any information, useful links and tutorials would be
 really appreciated I will keep you all posted how I get on thanks in
 advance.

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




-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/
Mob.No:09048382536(Kerala)
Mob.No:09751076707(TN)

-- 
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] No projects are found to import in Eclipse

2011-07-13 Thread vijayakumar M
check your workspace ... i think manifest file missing..

On Wed, Jul 13, 2011 at 4:22 PM, Perumss Naren peru2...@gmail.com wrote:

 HI ,

I can't open the sample projects in *android-sdk_r11-windows* it
 shows *No projects are found to import*

 what i did :

  * File- import-Existing project into workspace-next- *

then i Browse the sample projects from android-sdk_r11-windows
 - samples -

finally it shows *No projects are found to import*

 can u please guide me what to do


 Thanks and Regards,
 Perumal.N

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




-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/
Mob.No:09048382536(Kerala)
Mob.No:09751076707(TN)

-- 
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] Calendar view i want highlight multiple specific date in adnroid?

2011-07-13 Thread vijayakumar M
hi,

i have calendar in gridview i want highlight particular list of dates. how
can i achieve this one? please anybody helpme..

-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/
Mob.No:09048382536(Kerala)
Mob.No:09751076707(TN)

-- 
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] Please Help Me

2011-07-12 Thread vijayakumar M
Hi
i am trying to develop calendar based apps .. i want highlight particular
different different date.. how can i achieve this one?.. pleasee help
me...
-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/
Mob.No:09048382536(Kerala)
Mob.No:09751076707(TN)

-- 
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] Logining to a website

2011-07-12 Thread vijayakumar M
enter your password and username then press login button .. then it will
login..

On Wed, Jul 13, 2011 at 11:15 AM, Dalton Metzler sroze...@gmail.com wrote:

 How do i login to a website?

 I have a username box
 a password box and a login button please help!

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




-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/
Mob.No:09048382536(Kerala)
Mob.No:09751076707(TN)

-- 
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 compare web service date to calendar date in android ?

2011-07-10 Thread vijayakumar M
Hi Freinds,

Please Help me...  how to compare web service date to calendar date in
android ? then i want highlight that particular date in calendar.

any one please help me


Thanks
M VIJAYAKUMAR

-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/
Mob.No:09048382536(Kerala)
Mob.No:09751076707(TN)

-- 
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] Can I call a web service to get some data return the screen to the android?

2011-07-10 Thread vijayakumar M
check this one
http://iamvijayakumar.blogspot.com/2011/03/android-webservice-with.html





On Mon, Jul 11, 2011 at 10:47 AM, wu mark androidmark2...@gmail.com wrote:

 Dear Tushar :

 Could you provide some example? Thanks.

 BR,
 Mark

 2011/7/11 tushar sahni tusharsahn...@gmail.com

 yeah
   On Jul 11, 2011 7:16 AM, mark2011 androidmark2...@gmail.com wrote:
  Dear All :
 
  Can I call a web service to get some data  return the screen to
  the android? Actually, I want to get some data on the remote web
  server from the android phone  return back the android platform. How
  can I do it?
 
  Thanks.
 
  BR,
  Mark
 
  --
  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


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




-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/
Mob.No:09048382536(Kerala)
Mob.No:09751076707(TN)

-- 
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 use android calendar widget in my android apps???

2011-07-08 Thread vijayakumar M
Hi Guys,

any one help me... it's very urgent..

How to use android calendar widget in my android apps???
-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/
Mob.No:09048382536(Kerala)
Mob.No:09751076707(TN)

-- 
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] android sax parser with soap webservice ... need example

2011-07-05 Thread vijayakumar M
Hi Friends,
i want know
android sax parser with soap webservice . please help me friends.

Note*: Atleast give anybody sample code or link

thanks
yours vijayakumar


-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/
Mob.No:09048382536(Kerala)
Mob.No:09751076707(TN)

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