[android-developers] Re: need google api urls for trading or share market app

2011-07-15 Thread prakrati sharma
Hi Rajesh,
Thanks for the reply ..may i know that how may API's are available
from google.

-- 
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] need google api urls for trading or share market app

2011-07-14 Thread prakrati sharma
hi all,
is there any google api /URL for trading ?
i used langauge translation api 
http://ajax.googleapis.com/ajax/services/translate
..
i want some api for share market ..
can anybody 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 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] Paging in android

2011-04-21 Thread prakrati
hi all,
I my creating an app in which my data is coming from server.my data is
very large and i wanted to show that data in different different
pages .
is it possible to do this?if possible then how to do this?

-- 
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] Focus of List View is not working after setting theme color of layout

2011-04-18 Thread prakrati
Hi all,
 I have created an app in which i have three themes
after selecting the theme layout color is proper but when i am
clicking on list view then focus is gone
how to solve this problem?

-- 
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] Focus of List View is not working after setting theme color of layout

2011-04-18 Thread prakrati
Hi all,
 I have created an app in which i have three themes
after selecting the theme layout color is proper but when i am
clicking on list view then focus is gone
how to solve this problem?

-- 
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] List view focus is not working

2011-04-18 Thread prakrati
Hi,

-- 
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] List view focus is not working

2011-04-18 Thread prakrati
Hi,
   I have created an app with three theme red, white and black
background and setting this theme in oncreate() activity

public void onCreate(Bundle savedInstanceState) {

switch (LaunchTheme.value) {

case X:
{
setTheme(R.style.WhiteBackground);
break;
}
case Y:
{
setTheme(R.style.BlackBackground);
break;
}
case Z:
{
setTheme(R.style.RedBackground);
break;
}
}


but my activity has list view after setting the theme my listview
focus will not work..any help how to do this?

-- 
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] List view focus is not working

2011-04-18 Thread prakrati
Hi,
   I have created an app with three theme red, white and black
background and setting this theme in oncreate() activity

public void onCreate(Bundle savedInstanceState) {

switch (LaunchTheme.value) {

case X:
{
setTheme(R.style.WhiteBackground);
break;
}
case Y:
{
setTheme(R.style.BlackBackground);
break;
}
case Z:
{
setTheme(R.style.RedBackground);
break;
}
}


but my activity has list view after setting the theme my listview
focus will not work..any help how to do this?

-- 
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 change Application theme

2011-04-17 Thread prakrati
Thanks NJ

On Apr 16, 6:21 am, Nicholas Johnson metthejohn...@gmail.com wrote:
 Set your theme at run time in the onCreate() method using setTheme(int). Check
 it out 
 herehttp://developer.android.com/reference/android/view/ContextThemeWrapp...)
 .

 I do this with my app, and it works very well. My onCreate() method looks
 something like this:

 public onCreate(Bundle b) {

     /* Get your preference here */

     /* Set the theme before calling setContentView() */
     switch (theme) {
     case X:
         setTheme(R.style.theme1);
         break;
     case Y:
         setTheme(R.style.theme2);
         break;
     }

     super.onCreate();
     setContentView(R.layout.layout_name);



 }- Hide quoted text -

 - Show quoted text -

-- 
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 change Application theme

2011-04-15 Thread prakrati
Hi all,
 I have an application where i have set theme in manifest file.

application android:icon=@drawable/icon android:label=@string/
app_name android:theme=@style/CustomButton

i can change my application theme in only one time
i have three themes where user can select that perticular theme from
any view and change theme foe whole application .
please help how to do this?

-- 
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] parsing of silver light response

2011-04-06 Thread prakrati
hi All,

i have a URL--
http://111.222.333.444/ria/customer/Ri_logon.asp?requestString=nehru99|^dev12345|^|^L|^|$



and
response in this format--
0|$a a|^154307|^N|^29-Oct-2010 14:55:46|^28-Oct-2010|^28-Oct-2010|^27-
Oct-2010|^07-Oct-2010|^Y|^N|^O|^O|^O|^X|^0|^This is a test message|
^Silver Light Logon Successful|^raja20|^password1|^72.16.49.11|^4503|^|
$

by method POST i have to send request using  url..


http://111.222.333.444/ria/customer/Ri_logon.asp?requestString

and in body part i am sending
nehru99|^dev12345|^|^L|^|$

but every time i m getting error any help??? how to parse this
silver light response or is it possible to parse this response and
getting proper response??becoz thr is no KEYVALUE how to do this?

-- 
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] Refreshing app

2011-04-01 Thread prakrati
My data is coming from the server and i want to refresh that data
every 2 minutes
what should i do for this? any sample code for this?

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