[android-developers] Re: help me to link up all of my activities

2019-07-21 Thread Pakleni Kauboj

I am intrested!
четвртак, 17. јануар 2013. 16.27.56 UTC+1, Prabu Siabuabu је написао/ла:
>
> hi everyone! i was wonder is it possible to make an app like this? -> 
> http://i1193.photobucket.com/albums/aa344/hiatus1/wireframe_zps9e434b1b.jpg 
> and 
> if yes, how can i do that?? i'm stuck on to link up all of my activites to 
> main activities.. anyone here can help me please?? thanks in advance.
>
>
> Regards, 
>
> Prabu
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/bd5316fc-3263-42be-baef-06b64f6ecac1%40googlegroups.com.


[android-developers] Re: help me to link up all of my activities

2019-07-17 Thread stephen Yeary
On Thursday, January 17, 2013 at 4:07:42 PM UTC-6, bob wrote:
> You probably want to focus on the startActivityForResult method:
> 
> 
> public void startActivityForResult (Intent intent, int requestCode, Bundle 
> options)
> Added in API level 16
> Launch an activity for which you would like a result when it finished. When 
> this activity exits, your onActivityResult() method will be called with the 
> given requestCode. Using a negative requestCode is the same as calling 
> startActivity(Intent) (the activity is not launched as a sub-activity).
> Note that this method should only be used with Intent protocols that are 
> defined to return a result. In other protocols (such asACTION_MAIN or 
> ACTION_VIEW), you may not get the result when you expect. For example, if the 
> activity you are launching uses the singleTask launch mode, it will not run 
> in your task and thus you will immediately receive a cancel result.
> As a special case, if you call startActivityForResult() with a requestCode >= 
> 0 during the initial onCreate(Bundle savedInstanceState)/onResume() of your 
> activity, then your window will not be displayed until a result is returned 
> back from the started activity. This is to avoid visible flickering when 
> redirecting to another activity.
> This method throws ActivityNotFoundException if there was no Activity found 
> to run the given Intent.
> Parameters
> intent
> The intent to start.
> requestCode
> If >= 0, this code will be returned in onActivityResult() when the activity 
> exits.
> options
> Additional options for how the Activity should be started. See 
> Context.startActivity(Intent, Bundle) for more details.
> Throws
> 
> 
> android.content.ActivityNotFoundException
> See Also
>   startActivity(Intent)
> 
> 
> On Thursday, January 17, 2013 9:27:56 AM UTC-6, Prabu Siabuabu wrote:hi 
> everyone! i was wonder is it possible to make an app like this? -> 
> http://i1193.photobucket.com/albums/aa344/hiatus1/wireframe_zps9e434b1b.jpg 
> and if yes, how can i do that?? i'm stuck on to link up all of my activites 
> to main activities.. anyone here can help me please?? thanks in advance.
> 
> 
> Regards, 
> 
> 
> Prabu

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/20c2dcad-e3fc-4ff5-b422-db8ec4035366%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Help me this problem

2016-08-31 Thread Michael Thai


Vào 02:04:37 UTC+7 Thứ Tư, ngày 31 tháng 8 năm 2016, Michael Thai đã viết:
>
> Hello guys
> when i used android studio ver 2.1.2 and use method , parameter is very 
> clear for me to understand this method
>
> 
>
> but when i upload android studio to ver 2.1.3, the method parameter make 
> me confuse 
>
> 
>
> can you help me how to fix it or how can i get back old-version
>
> Anyone help me :( 

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/cde86497-fd16-4ca1-baaa-6507b480207a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Help me to find best android phone

2016-07-18 Thread mangorobot
This group is for development.  You will have better luck posting in this 
group:

http://slickdeals.net/forums/forumdisplay.php?f=11

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/2ea31f58-42ab-4adb-9238-29f5b3c75965%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Help me to find best android phone

2016-07-18 Thread mangorobot
This group is for development.  You will have better luck posting in this 
group:

http://slickdeals.net/forums/forumdisplay.php?f=11

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/e626a9dd-2c78-40c1-a51b-2146e3260f1b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Help me to find best android phone

2016-07-18 Thread mangorobot
DS, for that budget, your best bet is to look for a refurbished/used phone. 
 I would recommend:

   - Galaxy Note 3, root and install the latest Android
   - Galaxy Note 4, root and install the latest Android
   - Nexus 5x
   - Nexus 6p

I'm currently using a Galaxy Note 3, rooted with Android 5.1.1.  It still 
runs pretty good.

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/1ebc949c-1aa9-4e92-8529-a7c9e7f427d1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: help me to get android Map key

2013-06-22 Thread VenomVendor™
This should help you 
http://venomvendor.blogspot.in/2013/04/generating-api-key-for-google-mapsv2.html

On Friday, 21 June 2013 21:15:18 UTC+5:30, mansur wrote:

 Hi,
  
 I am trying get android google Map key, where II have followed all the 
 steps that mentioned 
 herehttps://developers.google.com/maps/documentation/android/start. During 
 the step: Creating an API Project when I tried to ON for *Google Maps 
 Android API v2,* the service for 'Google Maps Android API Terms of 
 Servicehttps://developers.google.com/maps/terms.', is 
 not displaying the* terms and conditions page* for me.
  
 Note: I am trying to generate the debug certificate fingerprint and use it 
 in my app for testing purpose.
 ** 
 *Kindly help me to get google android key for testing purpose*
 ** 
 Thanks and Regards,
 Mansursab 


-- 
-- 
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] Re: help me to link up all of my activities

2013-01-19 Thread Prabu Siabuabu
Hi Bob, thanks for your details explanation.. it give me an insight about 
my issue.. i'll search more about startActivityForResult method. thanks a 
lot dude!

On Friday, January 18, 2013 5:07:42 AM UTC+7, bob wrote:

 You probably want to focus on the *startActivityForResult* method:

 public void startActivityForResult (Intent intent, int requestCode, Bundle 
 options)
 Added in API level 16
 Launch an activity for which you would like a result when it finished. 
 When this activity exits, your onActivityResult() method will be called 
 with the given requestCode. Using a negative requestCode is the same as 
 calling startActivity(Intent) (the activity is not launched as a 
 sub-activity).
 Note that this method should only be used with Intent protocols that are 
 defined to return a result. In other protocols (such asACTION_MAIN or 
 ACTION_VIEW), you may not get the result when you expect. For example, if 
 the activity you are launching uses the singleTask launch mode, it will not 
 run in your task and thus you will immediately receive a cancel result.
 As a special case, if you call startActivityForResult() with a requestCode 
 = 0 during the initial onCreate(Bundle savedInstanceState)/onResume() of 
 your activity, then your window will not be displayed until a result is 
 returned back from the started activity. This is to avoid visible 
 flickering when redirecting to another activity.
 This method throws ActivityNotFoundException if there was no Activity 
 found to run the given Intent.
 Parameters
 intent
 The intent to start.
 requestCode
 If = 0, this code will be returned in onActivityResult() when the 
 activity exits.
 options
 Additional options for how the Activity should be started. See 
 Context.startActivity(Intent, Bundle) for more details.
 Throws

 android.content.ActivityNotFoundException
 See Also
 startActivity(Intent)


 On Thursday, January 17, 2013 9:27:56 AM UTC-6, Prabu Siabuabu wrote:

 hi everyone! i was wonder is it possible to make an app like this? - 
 http://i1193.photobucket.com/albums/aa344/hiatus1/wireframe_zps9e434b1b.jpg 
 and 
 if yes, how can i do that?? i'm stuck on to link up all of my activites to 
 main activities.. anyone here can help me please?? thanks in advance.


 Regards, 

 Prabu



-- 
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: help me to link up all of my activities

2013-01-17 Thread bob
You probably want to focus on the *startActivityForResult* method:

public void startActivityForResult (Intent intent, int requestCode, Bundle 
options)
Added in API level 16
Launch an activity for which you would like a result when it finished. When 
this activity exits, your onActivityResult() method will be called with the 
given requestCode. Using a negative requestCode is the same as calling 
startActivity(Intent) (the activity is not launched as a sub-activity).
Note that this method should only be used with Intent protocols that are 
defined to return a result. In other protocols (such asACTION_MAIN or 
ACTION_VIEW), you may not get the result when you expect. For example, if 
the activity you are launching uses the singleTask launch mode, it will not 
run in your task and thus you will immediately receive a cancel result.
As a special case, if you call startActivityForResult() with a requestCode 
= 0 during the initial onCreate(Bundle savedInstanceState)/onResume() of 
your activity, then your window will not be displayed until a result is 
returned back from the started activity. This is to avoid visible 
flickering when redirecting to another activity.
This method throws ActivityNotFoundException if there was no Activity found 
to run the given Intent.
Parameters
intent
The intent to start.
requestCode
If = 0, this code will be returned in onActivityResult() when the activity 
exits.
options
Additional options for how the Activity should be started. See 
Context.startActivity(Intent, Bundle) for more details.
Throws

android.content.ActivityNotFoundException
See Also
startActivity(Intent)


On Thursday, January 17, 2013 9:27:56 AM UTC-6, Prabu Siabuabu wrote:

 hi everyone! i was wonder is it possible to make an app like this? - 
 http://i1193.photobucket.com/albums/aa344/hiatus1/wireframe_zps9e434b1b.jpg 
 and 
 if yes, how can i do that?? i'm stuck on to link up all of my activites to 
 main activities.. anyone here can help me please?? thanks in advance.


 Regards, 

 Prabu


-- 
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: help me urgent

2013-01-01 Thread Lew
sree wrote:

 i [sic] gave two single dimensional arrays

 one array
 prioritynamearray=alistpriorityname.toArray(new 
 String[alistpriorityname.size()]);

 two array
 taskvaluesarray=taskvaluesarraylist.toArray(new 
 String[taskvaluesarraylist.size()]);

 The above code i take two ArrayList and convert two single dimensional 
 arrays,
 now i need these two seperate arrays as two dimensional array.
 how please convert it and give solution,


First, Java doesn't actually have two-dimensional arrays. What is does have 
is one-dimensional
arrays each of whose elements is an array, declared similarly to 

Foo [][] someFoos = 
{
  {new Foo(00), new Foo(01),}, 
  {new Foo(10),}, 
};

There are various ways to declare arrays, as the docs show.

   Foo [][] someFoos = new Foo [19] [17];

So you declare your two-dimensional array, then cycle through the 
elements copying items 
into your array.

-- 
Lew

-- 
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: help me urgent

2013-01-01 Thread sree android
After takeing two one dimensional arrays, i prepared one two dimensional
array.like this way

String [ ][ ] taskoutput=new
String[prioritynamearray.length][taskvaluesarray.length];
then Loop is rotating like this way,


for (int s = 0; s prioritynamearray.length; s++) {
for (int t = 0; t taskvaluesarray.length; t++) {
 taskoutput[s][t]=here how can i add above two values into 2d arrays.
}
 }

-- 
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: help me urgent

2013-01-01 Thread Lew
sree wrote:

 After takeing two one dimensional arrays, i [sic] prepared one two 
 dimensional array.like this way

 String [ ][ ] taskoutput=new 
 String[prioritynamearray.length][taskvaluesarray.length];


Please follow the Java naming conventions. It will benefit you, too.

Also, array (or variant) in a variable name is generally not useful. 
Variables usually should not be 
named for their type.
 

 then Loop is rotating like this way,

 for (int s = 0; s prioritynamearray.length; s++) {


Watch your crazy indentation, please.

DO NOT USE TAB CHARACTERS TO INDENT USENET POSTS!

for (int t = 0; t taskvaluesarray.length; t++) {
  taskoutput[s][t]=here how can i add above two values into 2d arrays.


What do you want here? You have not told us. 

You are, in effect, defining a transformation from the cross between the 
value sets represented by 
(I'll rename your variables) 'priorities' and 'tasks'. Let me draw it:

  \  priorities
 |  [0]  |  [1]  |  [2]  |  ...
tasks |---  ---|---  ---|---  ---|  ...
  [0]   |   ?|   ?   |   ?   |  ...
 ---  ---|---  ---|---  ---|---  ---|  ...
  [1]   |   ?|   ?   |   ?   |  ...
 ---  ---|---  ---|---  ---|---  ---|  ...
  [2]   |   ?|   ?   |   ?   |  ...
 ---  ---|---  ---|---  ---|---  ---|  ...
  [3]   |   ?|   ?   |   ?   |  ...
 ---  ---|---  ---|---  ---|---  ---|  ...

You will need 'priorities.length' times 'tasks.length' values to fill in 
those question-marked
matrix entries.

What goes there?

Please tell us.

  Foo results = new Foo [tasks.length] [priorities.length];
  for (int tx = 0; tx  tasks.length; ++tx)
  {
for (int px = 0; ix  priorities.length; ++px)
{
  Task task = tasks[tx];
  Priority priority = priorities[px];
  results [px][tx] = whatDoYouWantHerePleaseTellUs(task, priority);
}
  }

You need to tell us what you want in that box.

Obviously it's a value that depends on the two indexing values. You likely 
would want to factor 
that out as a method on the two arguments as I showed here.

So what do you want in that box?

-- 
Lew

  

-- 
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: help me urgent

2013-01-01 Thread Lew
Lew wrote:

   Foo results = new Foo [tasks.length] [priorities.length];
   for (int tx = 0; tx  tasks.length; ++tx)
   {
 for (int px = 0; ix  priorities.length; ++px)
 {
   Task task = tasks[tx];
   Priority priority = priorities[px];
   results [px][tx] = whatDoYouWantHerePleaseTellUs(task, priority);


Oops. '[tx][px]' . I got it backwards.

}
   }

 You need to tell us what you want in that box.

 Obviously it's a value that depends on the two indexing values. You likely 
 would want to factor 
 that out as a method on the two arguments as I showed here.

 So what do you want in that box?

 -- 
 Lew

   


-- 
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: help me

2012-08-29 Thread Juned Khan
See some Android documentation which is available on net and review some 
sample SIP based application like Sipdroid,Csipsimple,linphone. these are 
open source application so u can use the source code of this applications.

Thanks
Juned Khan 

-- 
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: Help me Android SDK Install, please!

2012-08-16 Thread HardipPatel


On Wednesday, 8 August 2012 20:46:19 UTC+5:30, TV wrote:

 I can not install Android SDK (see Android_SDK.jpg). I have already 
 installed the Java SDK (see Java.jpg). What should I do?




Hey you installed java in system32,
try to install it in Program files then run the android_sdk installer.

-- 
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: help me

2012-06-29 Thread Nobu Games


 *private void Validations()
 { 
   if(val1!=null)
   {
  Toast.makeTest(this,Enter First Value3000);
   }
   if(val1!=null)
   {
  Toast.makeTest(this,Enter Second Value3000);
   }

 }*


Judging this piece of code you are a complete beginner and may want to pick 
up some basic programming classes / books / tutorials. This group is not 
the right place for that.

Anyway. You have syntax errors in it (missing commas between 
Enter...Value and 3000), the method Toast.makeTest does not exist. It 
should be Toast.makeText instead. The number 3000 should be either 
Toast.LENGTH_SHORT or Toast.LENGTH_LONG and in the end you need to call the 
show() method on the resulting Toast object which is returned by 
Toast.makeText.

-- 
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: Go To ( http://adf.ly/20PrE )-)-) Re: [android-developers] Re: Help me on selecting a name to a game..

2012-03-16 Thread fredrischter
Anybody?

It already have 26 votes.. I think 40 is enough to decide the game name :)

Thanks for voting!!

https://docs.google.com/spreadsheet/viewform?formkey=dFdFYXJkZVZFblo0eFNldU94Sk56RVE6MQ#gid=0
 

If somebody have suggestions, tell me here and I add in the list.. anyway I 
thank for any vote.

Regards,
Fred

Em segunda-feira, 12 de março de 2012 10h27min19s UTC-3, Fred Rischter 
escreveu:

 Hum..

 I checked and realy its accessible.. maybe it is your network, proxy or 
 something, or not? Please check it, or your google login on google docs, 
 but anyway i think its not needed..

 Just need to click, select the boxes and confirm :)


 https://docs.google.com/spreadsheet/viewform?formkey=dFdFYXJkZVZFblo0eFNldU94Sk56RVE6MQ#gid=0
  

 Thanks,
 Fred

 Em sábado, 10 de março de 2012 01h00min24s UTC-3, Alex J. Lee escreveu:

 I just got an error that cannot find a spread sheet...

 2012. 3. 10. 오후 12:49 Spiral123 cumis...@gmail.com 작성:

  Whale Wars
  
  
  On Mar 6, 9:01 pm, Fred fredrisch...@gmail.com wrote:
  Hi Everybody,
  
  I'm developing a android game and i'm urgently needing to define a
  name to this game.. can you help on choosing the name?
  
  If you have 1 minute to check it up, please just choose the wanted
  names here:
  
  https://docs.google.com/spreadsheet/viewform?formkey=dGIwSUU2alJqSnVk.
 ..
  
  Thanks a lot,
  Fred
  
  -- 
  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 

 -- 
 Go to Master Mind Home Base Income Website :- 
 http://adf.ly/20PrE 
 http://adf.ly/20PrE 
 Unsubscribe All Group Post :- http://j.gs/624707/unsubscribe 
 http://q.gs/624707/unsubscribe 
 Subscribe All Group Post :- http://j.gs/624707/subscribe 
 http://q.gs/624707/subscribe 
 Join Now Today (Paid Income) :- 
 http://adf.ly/20PrE 
 http://adf.ly/20PrE 
 http://adf.ly/20PrE 
 http://adf.ly/?id=624707 
 http://adf.ly/20PrE 
 http://adf.ly/20PrE 
 http://adf.ly/20PrE 
 http://adf.ly/20PrE 
 http://adf.ly/20PrE 
 http://adf.ly/20PrE 
 http://adf.ly/20PrE 
 http://adf.ly/20PrE 
 http://adf.ly/20PrE 
 http://adf.ly/20PrE 
 http://adf.ly/20PrE 
 http://adf.ly/20PrE


-- 
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: Help me on selecting a name to a game..

2012-03-12 Thread Fred Rischter
Hum..

I checked and realy its accessible.. maybe it is your network, proxy or 
something, or not? Please check it, or your google login on google docs, 
but anyway i think its not needed..

Just need to click, select the boxes and confirm :)

https://docs.google.com/spreadsheet/viewform?formkey=dFdFYXJkZVZFblo0eFNldU94Sk56RVE6MQ#gid=0
 

Thanks,
Fred

Em sábado, 10 de março de 2012 01h00min24s UTC-3, Alex J. Lee escreveu:

 I just got an error that cannot find a spread sheet...

 2012. 3. 10. 오후 12:49 Spiral123 cumis...@gmail.com 작성:

  Whale Wars
  
  
  On Mar 6, 9:01 pm, Fred fredrisch...@gmail.com wrote:
  Hi Everybody,
  
  I'm developing a android game and i'm urgently needing to define a
  name to this game.. can you help on choosing the name?
  
  If you have 1 minute to check it up, please just choose the wanted
  names here:
  
  https://docs.google.com/spreadsheet/viewform?formkey=dGIwSUU2alJqSnVk.
 ..
  
  Thanks a lot,
  Fred
  
  -- 
  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: Help me on selecting a name to a game..

2012-03-11 Thread alex Kim And Lee
I just got an error that cannot find a spread sheet...

2012. 3. 10. 오후 12:49 Spiral123 cumis...@gmail.com 작성:

 Whale Wars
 
 
 On Mar 6, 9:01 pm, Fred fredrisch...@gmail.com wrote:
 Hi Everybody,
 
 I'm developing a android game and i'm urgently needing to define a
 name to this game.. can you help on choosing the name?
 
 If you have 1 minute to check it up, please just choose the wanted
 names here:
 
 https://docs.google.com/spreadsheet/viewform?formkey=dGIwSUU2alJqSnVk...
 
 Thanks a lot,
 Fred
 
 -- 
 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: Help me on selecting a name to a game..

2012-03-10 Thread Anirudh Loya
Anirudh

On Fri, Mar 9, 2012 at 7:49 PM, Spiral123 cumis...@gmail.com wrote:

 Whale Wars


 On Mar 6, 9:01 pm, Fred fredrisch...@gmail.com wrote:
  Hi Everybody,
 
  I'm developing a android game and i'm urgently needing to define a
  name to this game.. can you help on choosing the name?
 
  If you have 1 minute to check it up, please just choose the wanted
  names here:
 
  https://docs.google.com/spreadsheet/viewform?formkey=dGIwSUU2alJqSnVk...
 
  Thanks a lot,
  Fred

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




-- 

Thank you

Anirudh Loya | Android Developer**

Desk: +9140-30681824 | Mobile: +91*9246561265*

*The lingering question - WHAT NEXT?  is the mantra of Success  -- Voice
Of Love*

-- 
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: Help me on selecting a name to a game..

2012-03-10 Thread Fred
Hi Everybody

Thanks a lot for voting on the name of the water game.. the choosen
name was Kraken Attack!! :)

Now i would like to put in votation the name of this other game. This
is a survival horror game, the description is there. I'm with 3 games
in development at all :)

Please vote here:

https://docs.google.com/spreadsheet/viewform?formkey=dFdFYXJkZVZFblo0eFNldU94Sk56RVE6MQ#gid=0

If you have suggestion of other names please send me here or by email
so i add there in the listing..

Thanks a lot,
Fred



On 10 mar, 13:39, Anirudh Loya loya.anir...@gmail.com wrote:
 Anirudh









 On Fri, Mar 9, 2012 at 7:49 PM, Spiral123 cumis...@gmail.com wrote:
  Whale Wars

  On Mar 6, 9:01 pm, Fred fredrisch...@gmail.com wrote:
   Hi Everybody,

   I'm developing a android game and i'm urgently needing to define a
   name to this game.. can you help on choosing the name?

   If you have 1 minute to check it up, please just choose the wanted
   names here:

  https://docs.google.com/spreadsheet/viewform?formkey=dGIwSUU2alJqSnVk...

   Thanks a lot,
   Fred

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

 --

 Thank you

 Anirudh Loya | Android Developer**

 Desk: +9140-30681824 | Mobile: +91*9246561265*

 *The lingering question - WHAT NEXT?  is the mantra of Success  -- Voice
 Of Love*

-- 
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: Help me on selecting a name to a game..

2012-03-09 Thread Spiral123
Whale Wars


On Mar 6, 9:01 pm, Fred fredrisch...@gmail.com wrote:
 Hi Everybody,

 I'm developing a android game and i'm urgently needing to define a
 name to this game.. can you help on choosing the name?

 If you have 1 minute to check it up, please just choose the wanted
 names here:

 https://docs.google.com/spreadsheet/viewform?formkey=dGIwSUU2alJqSnVk...

 Thanks a lot,
 Fred

-- 
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: Help me on selecting a name to a game..

2012-03-08 Thread Kostya Vasilyev
This is what I get after clicking on the link:

Мы сожалеем.
Таблица по указанному URL не обнаружена. Проверьте правильность URL и
убедитесь в том, что владелец таблицы не удалил её.

Дополнительную информацию можно найти в справочном центре Документов Google.


Владелец Таблицы would be a great name for a resource management
game, and is definitely more fresh than the literally hundreds
Farm... whatever... Tycoon / Manager sound-alikes.

-- Kostya

7 марта 2012 г. 23:02 пользователь Fred fredrisch...@gmail.com написал:
 Nobody? :)

 Its just to choose the better names and confirm..

 Thanks!
 Fred

 On 6 mar, 23:01, Fred fredrisch...@gmail.com wrote:
 Hi Everybody,

 I'm developing a android game and i'm urgently needing to define a
 name to this game.. can you help on choosing the name?

 If you have 1 minute to check it up, please just choose the wanted
 names here:

 https://docs.google.com/spreadsheet/viewform?formkey=dGIwSUU2alJqSnVk...

 Thanks a lot,
 Fred

 --
 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: Help me on selecting a name to a game..

2012-03-08 Thread Ali Chousein
хорошо :)


On Mar 8, 1:03 pm, Kostya Vasilyev kmans...@gmail.com wrote:
 This is what I get after clicking on the link:

 Мы сожалеем.
 Таблица по указанному URL не обнаружена. Проверьте правильность URL и
 убедитесь в том, что владелец таблицы не удалил её.

 Дополнительную информацию можно найти в справочном центре Документов Google.

 Владелец Таблицы would be a great name for a resource management
 game, and is definitely more fresh than the literally hundreds
 Farm... whatever... Tycoon / Manager sound-alikes.

 -- Kostya

 7 марта 2012 г. 23:02 пользователь Fred fredrisch...@gmail.com написал:







  Nobody? :)

  Its just to choose the better names and confirm..

  Thanks!
  Fred

  On 6 mar, 23:01, Fred fredrisch...@gmail.com wrote:
  Hi Everybody,

  I'm developing a android game and i'm urgently needing to define a
  name to this game.. can you help on choosing the name?

  If you have 1 minute to check it up, please just choose the wanted
  names here:

 https://docs.google.com/spreadsheet/viewform?formkey=dGIwSUU2alJqSnVk...

  Thanks a lot,
  Fred

  --
  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: Help me on selecting a name to a game..

2012-03-08 Thread Mohit kumawat
Sea arcade

On Mar 7, 7:01 am, Fred fredrisch...@gmail.com wrote:
 Hi Everybody,

 I'm developing a android game and i'm urgently needing to define a
 name to this game.. can you help on choosing the name?

 If you have 1 minute to check it up, please just choose the wanted
 names here:

 https://docs.google.com/spreadsheet/viewform?formkey=dGIwSUU2alJqSnVk...

 Thanks a lot,
 Fred

-- 
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: Help me on selecting a name to a game..

2012-03-08 Thread Seshu
Devilfish

On Mar 8, 7:36 pm, Mohit kumawat mohit.kumawat1...@gmail.com wrote:
 Sea arcade

 On Mar 7, 7:01 am, Fred fredrisch...@gmail.com wrote:







  Hi Everybody,

  I'm developing a android game and i'm urgently needing to define a
  name to this game.. can you help on choosing the name?

  If you have 1 minute to check it up, please just choose the wanted
  names here:

 https://docs.google.com/spreadsheet/viewform?formkey=dGIwSUU2alJqSnVk...

  Thanks a lot,
  Fred

-- 
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: Help me on selecting a name to a game..

2012-03-07 Thread Fred
Nobody? :)

Its just to choose the better names and confirm..

Thanks!
Fred

On 6 mar, 23:01, Fred fredrisch...@gmail.com wrote:
 Hi Everybody,

 I'm developing a android game and i'm urgently needing to define a
 name to this game.. can you help on choosing the name?

 If you have 1 minute to check it up, please just choose the wanted
 names here:

 https://docs.google.com/spreadsheet/viewform?formkey=dGIwSUU2alJqSnVk...

 Thanks a lot,
 Fred

-- 
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: Help me....

2012-01-23 Thread Lindsay Parker


I had the same problem, because I missed this message in Installing the 
SDK.  Hope this helps.


Optionally, you might want to add the location of the SDK's tools/ and 
platform-tools to your PATH environment variable, to provide easy access to 
the tools.
 How to update your PATH http://developer.android.com/sdk/installing.html#

Adding both tools/ and platform-tools/ to your PATH lets you run command 
line tools http://developer.android.com/guide/developing/tools/index.html 
without 
needing to supply the full path to the tool directories. Depending on your 
operating system, you can include these directories in your PATH in the 
following way:

   - On Windows, right-click on My Computer, and select Properties. Under 
   the Advanced tab, hit the Environment Variables button, and in the dialog 
   that comes up, double-click on Path (under System Variables). Add the full 
   path to the tools/ and platform-tools/ directories to the path.
   - On Linux, edit your ~/.bash_profile or ~/.bashrc file. Look for a line 
   that sets the PATH environment variable and add the full path to the 
   tools/ and platform-tools/ directories to it. If you don't see a line 
   setting the path, you can add one:
   
   export PATH=${PATH}:sdk/tools:sdk/platform-tools
   
   - On a Mac OS X, look in your home directory for .bash_profile and 
   proceed as for Linux. You can create the .bash_profile if you don't 
   already have one.

-- 
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: Help me....

2011-12-31 Thread Lew
RAJU wrote:

 pls help me.. how to fix this issues in eclipse pls


I'll get to your question in a minute, but I have to object to this use of 
pls to spell please.  It's only three letters difference.  Is it really 
that much trouble to spell it out?

 [2011-12-31 17:58:34 - DDMS] DDMS files not found:
 D:\Eclipse\eclipse\platform-tools\adb.exe
 D:\Eclipse\eclipse\tools\hprof-conv.exe
 D:\Eclipse\eclipse\tools\traceview.bat 

You don't give a whole lot of information, but this snippet suggests that 
you might not have set up the Eclipse ADT plugin, or at least not correctly.
http://developer.android.com/sdk/eclipse-adt.html

Or perhaps Eclipse itself is not installed correctly.  The missing Eclipse 
tools suggest that.

Speaking of not spelling things out (spell things out is a colloquialism 
meaning to provide all the details), people might be able to offer better 
help if you give more details.  What sort of things were you doing?  Does 
this happen with Eclipse generally or only for a specific project?  At what 
phase?  How is the project set up?

Anyway, check your plugins and other related installations.  If things 
remain broken maybe additional details will uncover the mystery then.

-- 
Lew

-- 
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: help me

2011-10-25 Thread Studio LFP
I think you may have wandered into the wrong group. This is for Android 
development mainly dealing with the Java side of things.

There is an NDK group if you are looking for the C/C++ side of things. You 
may also want to check out other groups that have to do with modifying the 
Android base if you are looking for something really low level.

Steven
Studio LFP
http://www.studio-lfp.com


On Monday, October 24, 2011 9:20:18 AM UTC-5, RAJU wrote:

 how to run c,c++ program in terminal...






 ~~RAJU~~
 ~~www.itdoall.co.cc~~
  

-- 
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: Help me to create my application(data to be edited real time)

2011-07-15 Thread Paul Turchenko
GO thru SDK samples. They will give you generic idea of how that could
be implemented.

On Jul 15, 7:54 am, julious raj julious...@gmail.com wrote:
 I want to create an application which stores the given data such as
 name, DOB, address, mail, and etc., into sqlite database and then goes
 to another activity and that activity shows the data like tableview .
 i've done this by listing data in listview in column. But it is not
 aligned well. the address field is not synchronized with name. My aim
 is to edit the data in real time(means when i press long in a row it
 must be editable ) and update the edited data to sqlite database.

 Any one please help me. Give me ideas how to do it?

-- 
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: Help me in detecting sound pulses (basically frequency detection)

2011-05-17 Thread Soumyajit Roy
We are able to detect speech..  but we are facing problems with
detection of music(non speech audio) ,If any body has any idea let us
know.
Thanks ,
Soumyajit Roy

-- 
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: Help me in detecting sound pulses (basically frequency detection)

2011-05-15 Thread Soumyajit Roy
hey thanks for the linkif you have any other material then please
share it...
a material with some code will be great...

On May 13, 3:13 pm, Yahel kaye...@gmail.com wrote:
 You need to take a look at an algorithm called Fast Fourier
 Transform.
 You can find one implementation here 
 :http://www.badlogicgames.com/wordpress/?p=449

 Good luck.

 Yahel

-- 
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: Help me in detecting sound pulses (basically frequency detection)

2011-05-13 Thread Soumyajit Roy

Hi Pradeep
I have transmitted some pulses corresponding to a Morse code pattern.
e.g, if the code is ..---.-.---.-- then '.' will have a particular
frequency pulse and '-' will have a particular frequency pulse. Thus
it is a stream of pulses having two frequency. you can clearly
understand that the stream is formed according to the Morse code
pattern. Now I'm using this app as a Beacon tx. This is my sound
source. Now in another device I wanna receive this pulses and analyze.
That means if I get pulse of freq X then its a '-' and if I get freq Y
then its a '.'

-- 
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: Help me in detecting sound pulses (basically frequency detection)

2011-05-13 Thread Soumyajit Roy
Hi
all
On May 12, 9:22 am, Prady pradp...@gmail.com wrote:
 Hi Soumyajit,

 Can you clarify on a few things on your need, for example: what's the
 input source for the sound pulses that you will be getting, because If
 its a hardware connected to your device then I guess your device would
 need to be interfaced with linux kernel. If the sound pulses are
 stored in a file, and you plan to read them from an android app, then
 you can try digging a it a bit in media framework(using which you can
 split and analyze your sound samples), but I am not sure whether your
 requirement of basic reception and detection of frequency would be
 met.

 Regards,
 Pradeep

 On May 11, 2:11 pm, Soumyajit Roy soumyajitroy...@gmail.com wrote:



  Hi all,
  I am soumyajit. Presently working on a App that needs sound pulse
  detection ( basically reception and detection of frequency). Can
  anybody help me? there are no codes in the web..and neither I found
  any libraries...
  Thanks,
  Soumyajit Roy- 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] Re: Help me in detecting sound pulses (basically frequency detection)

2011-05-13 Thread Yahel
You need to take a look at an algorithm called Fast Fourier
Transform.
You can find one implementation here : 
http://www.badlogicgames.com/wordpress/?p=449

Good luck.

Yahel

-- 
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: Help me in detecting sound pulses (basically frequency detection)

2011-05-12 Thread Prady
Hi Soumyajit,

Can you clarify on a few things on your need, for example: what's the
input source for the sound pulses that you will be getting, because If
its a hardware connected to your device then I guess your device would
need to be interfaced with linux kernel. If the sound pulses are
stored in a file, and you plan to read them from an android app, then
you can try digging a it a bit in media framework(using which you can
split and analyze your sound samples), but I am not sure whether your
requirement of basic reception and detection of frequency would be
met.

Regards,
Pradeep

On May 11, 2:11 pm, Soumyajit Roy soumyajitroy...@gmail.com wrote:
 Hi all,
 I am soumyajit. Presently working on a App that needs sound pulse
 detection ( basically reception and detection of frequency). Can
 anybody help me? there are no codes in the web..and neither I found
 any libraries...
 Thanks,
 Soumyajit Roy

-- 
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: Help me to realize preferences scheme to use it between activities

2011-04-12 Thread Sergey K
Thank you for your answers. I was able to use the preferences in one 
Activity, and between them could not

-- 
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: Help me to realize preferences scheme to use it between activities

2011-04-02 Thread Peter Webb
The OP said he had two applications. He did not specify whether they
were in different packages. I tried to explain the general rules as I
understand them, and describe options for different scenarios.

Why did you post? What value did your post add to anything or anybody?

Do you know more about how to address the OP's issues? If so, why
didn't you try and post something helpful to the OP and maybe other
readers? If not, why did you post at all? Haven't you anything more
intelligent to say than adding a me too to an existing useless post?




On Apr 2, 4:45 pm, Justin Anderson magouyaw...@gmail.com wrote:
 * Who said anything about reading preferences in another package?*

 I know the OP certainly didn't... :-)

 Thanks,
 Justin Anderson
 MagouyaWare Developerhttp://sites.google.com/site/magouyaware



 On Fri, Apr 1, 2011 at 8:39 PM, TreKing treking...@gmail.com wrote:
  On Fri, Apr 1, 2011 at 9:07 PM, Peter Webb r.peter.w...@gmail.com wrote:

  You cannot currently use Shared Preferences to read the preferences
  in another package, the documentation says this is currently unsupported.

  Who said anything about reading preferences in another package?

  ---­--
  TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
  transit tracking app for Android-powered devices

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


Re: [android-developers] Re: Help me to realize preferences scheme to use it between activities

2011-04-02 Thread TreKing
On Sat, Apr 2, 2011 at 3:56 AM, Peter Webb r.peter.w...@gmail.com wrote:

 The OP said he had two applications.


Where did he say that?

I see:
On Thu, Mar 31, 2011 at 4:58 AM, Sergey K serj...@gmail.com wrote:

 (My first and main *activitiy *must be form with login + password) ... My
 currently code work only in one *activity*, if i want to use preferences
 in another *activity*. ...

 Maybe some of you can offer another way to store login and password for my
 app, with using in *activities*.


Lots of mention of multiple activities. I see no mention of multiple
applications or packages.


 He did not specify whether they were in different packages.


I think this is assumed when dealing with a single app.


 I tried to explain the general rules as I understand them, and describe
 options for different scenarios.


I was confused and wanted to know what your explanation had to do with the
OP's original question. I still don't and I'm still confused.


 Why did you post? What value did your post add to anything or anybody?

 Do you know more about how to address the OP's issues? If so, why didn't
 you try and post something helpful to the OP and maybe other readers? If
 not, why did you post at all? Haven't you anything more intelligent to say
 than adding a me too to an existing useless post?


No need to get testy.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
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: Help me to realize preferences scheme to use it between activities

2011-04-01 Thread Indicator Veritatis
Ah, but you see, in today's world, nobody should ever talk about
storing a password in preferences unless it IS stored securely.
Anyone who offers the ability to store it without making that secure
should be arrested as an accessory to the computer hackers who commit
crimes by taking advantage of such insecure storage.

On Mar 31, 5:25 pm, TreKing treking...@gmail.com wrote:
 On Thu, Mar 31, 2011 at 7:18 PM, Indicator Veritatis mej1...@yahoo.comwrote:

  Actually, there is a bigger problem here the documentation you refer him to
  will not resolve: how to store the password securely

 Oh yeah, that's a whole 'nother can of worms. But OP only asked about
 storing l+p in preferences, nothing about making it secure :-P

 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
 transit tracking app for Android-powered devices

-- 
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: Help me to realize preferences scheme to use it between activities

2011-04-01 Thread Peter Webb
I am a bit of a newb myself, but so far none of the responses seem
super-helpful.

You cannot currently use Shared Preferences to read the preferences in
another package, the documentation says this is currently unsupported.

If you combine the two apps into the one package, I think they can
share Preferences.

If separate apps, you should be able to load the Settings screen of
app A from inside app B by sending an intent from app B to app A's
settings screen. You may then also be able to do your login processing
inside app A's setting screen, meaning that a login occurs within app
A's settings before app B tries to access the server.

As several people have pointed out, the correct way of passing
information between apps is through a content provider, typically a
database.

However, Preferences are super easy to code up, and handle virtually
all of the machinery. For a newb (such as myself and probably you),
Preferences are more straightforward than Content Providers, and a
solution based on Shared preferences is easier to implement if it can
do what you want.

That's my experience, anyway.

Peter Webb


On Apr 2, 9:28 am, Indicator Veritatis mej1...@yahoo.com wrote:
 Ah, but you see, in today's world, nobody should ever talk about
 storing a password in preferences unless it IS stored securely.
 Anyone who offers the ability to store it without making that secure
 should be arrested as an accessory to the computer hackers who commit
 crimes by taking advantage of such insecure storage.

 On Mar 31, 5:25 pm, TreKing treking...@gmail.com wrote:



  On Thu, Mar 31, 2011 at 7:18 PM, Indicator Veritatis 
  mej1...@yahoo.comwrote:

   Actually, there is a bigger problem here the documentation you refer him 
   to
   will not resolve: how to store the password securely

  Oh yeah, that's a whole 'nother can of worms. But OP only asked about
  storing l+p in preferences, nothing about making it secure :-P

  ---­--
  TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
  transit tracking app for Android-powered devices- 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


Re: [android-developers] Re: Help me to realize preferences scheme to use it between activities

2011-04-01 Thread TreKing
On Fri, Apr 1, 2011 at 9:07 PM, Peter Webb r.peter.w...@gmail.com wrote:

 You cannot currently use Shared Preferences to read the preferences
 in another package, the documentation says this is currently unsupported.


Who said anything about reading preferences in another package?

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
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: Help me to realize preferences scheme to use it between activities

2011-04-01 Thread Justin Anderson
* Who said anything about reading preferences in another package?*

I know the OP certainly didn't... :-)

Thanks,
Justin Anderson
MagouyaWare Developer
http://sites.google.com/site/magouyaware


On Fri, Apr 1, 2011 at 8:39 PM, TreKing treking...@gmail.com wrote:

 On Fri, Apr 1, 2011 at 9:07 PM, Peter Webb r.peter.w...@gmail.com wrote:

 You cannot currently use Shared Preferences to read the preferences
 in another package, the documentation says this is currently unsupported.


 Who said anything about reading preferences in another package?


 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
 transit tracking app for Android-powered devices


  --
 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: Help me please

2011-03-31 Thread Khadija FERJANI
The problem is resolved and i ignore how. Now everything works perfectly.
But i'm sure, ADB works each time running the program fails, with no
messages in the logcat.


2011/3/31 Indicator Veritatis mej1...@yahoo.com

 Now that is hard to believe -- unless ADB isn't even running. Check to
 make sure it is by opening a console/terminal window and typing 'adb
 devices'. It is, alas, common to have to stop and re-start the adb
 server to get logcat output to appear.

 Even when there are no bugs, the phone produces LOTS of logcat output.
 Of course, so does the emulator, since it emulates a phone.

 On Mar 30, 2:17 am, Khadija FERJANI ferjani.khad...@gmail.com wrote:
  No messages in the logcat !!
 
  2011/3/30 Indicator Veritatis mej1...@yahoo.com
 
   And did you do as it said? Did you check logcat output? What did you
   see there?
 
   On Mar 26, 6:47 am, Khadija FERJANI ferjani.khad...@gmail.com wrote:
I'm an android beginner.
I got this message whenever i try to run or debug my first
 application
Installation failed due to invalid APK file!
Please check logcat output for more details.
Launch canceled
I changed the AVD configuraiton, the JKD version and even the region
 and
language settings in my computer, but nothing changed.
Do you have an idea, what shall i do to resolve this problem
thanks
 
--
Cordialement, Khadija FERJANI
Élève ingénieur à la faculté des sciences de Tunis.
 
   --
   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
 
  --
  Cordialement, Khadija FERJANI
  Élève ingénieur à la faculté des sciences de Tunis.

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




-- 
Cordialement, Khadija FERJANI
Élève ingénieur à la faculté des sciences de Tunis.

-- 
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: Help me to realize preferences scheme to use it between activities

2011-03-31 Thread Indicator Veritatis
Actually, there is a bigger problem here the documentation you refer
him to will not resolve: how to store the password securely. Then
again, since the Gmail password is already insecurely stored...

On Mar 31, 2:46 pm, TreKing treking...@gmail.com wrote:
 On Thu, Mar 31, 2011 at 4:58 AM, Sergey K serj...@gmail.com wrote:
  I want to place l+p in preferences (My first and main activitiy must be
  form with login + password) can u share some advices to realize this scheme?

 Read the 
 documentation?http://developer.android.com/guide/topics/data/data-storage.html

 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
 transit tracking app for Android-powered devices

-- 
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: Help me to realize preferences scheme to use it between activities

2011-03-31 Thread TreKing
On Thu, Mar 31, 2011 at 7:18 PM, Indicator Veritatis mej1...@yahoo.comwrote:

 Actually, there is a bigger problem here the documentation you refer him to
 will not resolve: how to store the password securely


Oh yeah, that's a whole 'nother can of worms. But OP only asked about
storing l+p in preferences, nothing about making it secure :-P

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
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: Help me please

2011-03-30 Thread Khadija FERJANI
No messages in the logcat !!

2011/3/30 Indicator Veritatis mej1...@yahoo.com

 And did you do as it said? Did you check logcat output? What did you
 see there?

 On Mar 26, 6:47 am, Khadija FERJANI ferjani.khad...@gmail.com wrote:
  I'm an android beginner.
  I got this message whenever i try to run or debug my first application
  Installation failed due to invalid APK file!
  Please check logcat output for more details.
  Launch canceled
  I changed the AVD configuraiton, the JKD version and even the region and
  language settings in my computer, but nothing changed.
  Do you have an idea, what shall i do to resolve this problem
  thanks
 
  --
  Cordialement, Khadija FERJANI
  Élève ingénieur à la faculté des sciences de Tunis.

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




-- 
Cordialement, Khadija FERJANI
Élève ingénieur à la faculté des sciences de Tunis.

-- 
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: Help me please

2011-03-30 Thread Indicator Veritatis
Now that is hard to believe -- unless ADB isn't even running. Check to
make sure it is by opening a console/terminal window and typing 'adb
devices'. It is, alas, common to have to stop and re-start the adb
server to get logcat output to appear.

Even when there are no bugs, the phone produces LOTS of logcat output.
Of course, so does the emulator, since it emulates a phone.

On Mar 30, 2:17 am, Khadija FERJANI ferjani.khad...@gmail.com wrote:
 No messages in the logcat !!

 2011/3/30 Indicator Veritatis mej1...@yahoo.com

  And did you do as it said? Did you check logcat output? What did you
  see there?

  On Mar 26, 6:47 am, Khadija FERJANI ferjani.khad...@gmail.com wrote:
   I'm an android beginner.
   I got this message whenever i try to run or debug my first application
   Installation failed due to invalid APK file!
   Please check logcat output for more details.
   Launch canceled
   I changed the AVD configuraiton, the JKD version and even the region and
   language settings in my computer, but nothing changed.
   Do you have an idea, what shall i do to resolve this problem
   thanks

   --
   Cordialement, Khadija FERJANI
   Élève ingénieur à la faculté des sciences de Tunis.

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

 --
 Cordialement, Khadija FERJANI
 Élève ingénieur à la faculté des sciences de Tunis.

-- 
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: Help me please

2011-03-29 Thread Indicator Veritatis
And did you do as it said? Did you check logcat output? What did you
see there?

On Mar 26, 6:47 am, Khadija FERJANI ferjani.khad...@gmail.com wrote:
 I'm an android beginner.
 I got this message whenever i try to run or debug my first application
 Installation failed due to invalid APK file!
 Please check logcat output for more details.
 Launch canceled
 I changed the AVD configuraiton, the JKD version and even the region and
 language settings in my computer, but nothing changed.
 Do you have an idea, what shall i do to resolve this problem
 thanks

 --
 Cordialement, Khadija FERJANI
 Élève ingénieur à la faculté des sciences de Tunis.

-- 
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: help me pleaseeeeee

2011-03-21 Thread Varun Batra
@Override
public void onClick(View v) {
sendFeedback(parameters)
}

try this.


On Mar 19, 5:33 am, jaafar zbeiba jaafarinformati...@gmail.com
wrote:
 hello I just created a code to input area password c is to say in
 dermarage of the android must put his onscreen user password but the
 problem in the code that I have no errors when I type in the edit text
 area and I click ok nothing happens AC that can help me thank you
 here is the code
 ublic void onCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);
         setContentView(R.layout.main);
         editText= (EditText)findViewById(R.id.editText);
         ok= (Button)findViewById(R.id.ok);
         ok.setOnClickListener(this);
         editText.setOnClickListener(this);

 public void sendFeedback(View button) {
             String name=1234;

              String name1 =chaine;
               //nameField.getText().toString();

             if(name.equals(name1))
               Toast.makeText(this,Mot de passe
 orrect,Toast.LENGTH_SHORT).show();
               else
              Toast.makeText(this,Mot de passe
 Incorrect,Toast.LENGTH_SHORT).show();

                // Do click handling here
             }

         @Override
         public boolean onKey(View arg0, int arg1, KeyEvent arg2) {
                 // TODO Auto-generated method stub
                 return false;
         }

         @Override
         public void onClick(View v) {
                 // TODO Auto-generated method stub

         }}

-- 
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: help me pleaseeeeee

2011-03-19 Thread lbendlin
Here's a link that should get you started.

http://developer.android.com/guide/topics/fundamentals.html

-- 
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: Help me on AsyncTask

2011-01-14 Thread Jimmy hautelook
I'm guessing that you've restarted your async task again when you
clicked back.  If your intention was to run it again, make sure you
create a new instance every time.  Each instance of AsyncTask can only
be executed once.  if you executed more than once, you'll get an
exception.  Example:

# this is OK, because you are calling execute() on a new instance
every time

  public class MyActivity extends Activity {

 @Override
 public void onCreate(Bundle savedInstanceState) {
 new LongOperation.execute();
 }
  }



# this is NOT OK, because you are calling multiple execute() on the
same instance.

  public class MyActivity extends Activity {

 LongOperation task = new LongOperation();

 @Override
 public void onCreate(Bundle savedInstanceState) {
 task.execute(); // on click back or orientation change,
exception will occure
 }
  }


if you only want to run it once per activity, i would probably just
set a static variable flag within the the activity to check against
ever time when the AsyncTask is called. something like,


  public class MyActivity extends Activity {

 static Boolean flag=true;

 @Override
 public void onCreate(Bundle savedInstanceState) {
  if(flag) {
   new LongOperation.execute();
   flag= false;
  }
 }
  }

when you call finish() to destroy the activity, the flag will get
wiped out as well.  so the next time you start the same activity,
asynctask will executed again.


now, if you only want to run it once per application startup, you can
use the same strategy but save the static flag in your own
implementation of the application class.





On Jan 4, 2:18 am, Mystique joven.ch...@gmail.com wrote:
 Hi,

 I am doing someAsyncTaskthing and seems to work ok and after that I
 open another intent to display a listview.
 The thing is, if the user press the back key, it return to the caller
 intent showing the progress dialog and seems to be hanging there until
 it crash. What did I do wrong? I already do a dialog.dismiss()
 onPostExecute().

 Please help me out.

 Many thanks,
 CJ

     private class LongOperation extendsAsyncTaskString, Void,
 String {
         ProgressDialog dialog;

         @Override
         protected String doInBackground(String... params) {
                 // download something from the net and processing it.
                 // work perfectly
                 return null;
         }

         @Override
         protected void onPostExecute(String result) {
                 // execution of result of Long time consuming operation
                 // some processing from the information taken from the
 internet (doInBackground)
                 if (dialog.isShowing()) {
                 dialog.dismiss();
             }
         }

         /* (non-Javadoc)
          * @see android.os.AsyncTask#onPreExecute()
          */
         @Override
         protected void onPreExecute() {
         // Things to be done before execution of long running operation.
 For example showing ProgessDialog
                 dialog = ProgressDialog.show(Main.this, ,
                     Receiving data, true);
         }

         @Override
         protected void onProgressUpdate(Void... values) {
           // Things to be done while execution of long running
 operation is in progress. For example updating ProgessDialog
          }
     }

-- 
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: Help me on AsyncTask

2011-01-04 Thread MrChaz
If it's crashing then take a look at the exception that's logged it'll give 
you a line number.

-- 
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: Help me on AsyncTask

2011-01-04 Thread Bob Kerns
Better yet -- use the debugger!

On Jan 4, 6:48 am, MrChaz mrchazmob...@gmail.com wrote:
 If it's crashing then take a look at the exception that's logged it'll give
 you a line number.

-- 
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: Help me on AsyncTask

2011-01-04 Thread JonFHancock
I'm guessing it is in your logic.

If the user is viewing a different Activity, then dialog.isShowing()
is false, so when the ASyncTask finishes, it sees that the dialog is
not showing, so doesn't close it.  When the user switches back to the
calling Activity, then they find the dialog still open with no hope of
ever being closed.

I would either close the dialog before opening the new Intent, or
check if it is open on resume, and if so close it.

On Jan 4, 2:18 am, Mystique joven.ch...@gmail.com wrote:
 Hi,

 I am doing some AsyncTask thing and seems to work ok and after that I
 open another intent to display a listview.
 The thing is, if the user press the back key, it return to the caller
 intent showing the progress dialog and seems to be hanging there until
 it crash. What did I do wrong? I already do a dialog.dismiss()
 onPostExecute().

 Please help me out.

 Many thanks,
 CJ

     private class LongOperation extends AsyncTaskString, Void,
 String {
         ProgressDialog dialog;

         @Override
         protected String doInBackground(String... params) {
                 // download something from the net and processing it.
                 // work perfectly
                 return null;
         }

         @Override
         protected void onPostExecute(String result) {
                 // execution of result of Long time consuming operation
                 // some processing from the information taken from the
 internet (doInBackground)
                 if (dialog.isShowing()) {
                 dialog.dismiss();
             }
         }

         /* (non-Javadoc)
          * @see android.os.AsyncTask#onPreExecute()
          */
         @Override
         protected void onPreExecute() {
         // Things to be done before execution of long running operation.
 For example showing ProgessDialog
                 dialog = ProgressDialog.show(Main.this, ,
                     Receiving data, true);
         }

         @Override
         protected void onProgressUpdate(Void... values) {
           // Things to be done while execution of long running
 operation is in progress. For example updating ProgessDialog
          }
     }

-- 
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: help me understand: upper case characters in layout file names are disallowed

2010-11-23 Thread Leon Moreyn-Android Development
It a language structure concept. You just have to build around it. Its
kind of like saying why can i only pay with quarters into a vending
machine if I have two dimes and a nickel. The structure of the machine
is not designed to handle you dimes and nickels and this way the
machine can process faster with less distractions.

On Nov 21, 7:00 pm, Justin Collum jcol...@gmail.com wrote:
 I understand that these files map to R classes (generated). So I see
 why punctuation characters (most) are disallowed. But I can't for the
 life of me think of why main would be allowed but Main would not.
 Why not something like firstScreen?  Is there something about
 generated files that I'm missing? Do caps screw them up somehow? I'd
 like to make a view named defineNewList or something along those
 lines. Annoying to have to use underscores: define_new_list.

-- 
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: help me understand: upper case characters in layout file names are disallowed

2010-11-23 Thread Diego Torres Milano
This limitation surely comes from supporting some filesystems on some
operating systems which are case insensitive.
BTW, you can name your View defineNewList but you cannot name your
layout, which is a filename, Main.
Leon Moreyn-Android Development wrote:
 It a language structure concept. You just have to build around it. Its
 kind of like saying why can i only pay with quarters into a vending
 machine if I have two dimes and a nickel. The structure of the machine
 is not designed to handle you dimes and nickels and this way the
 machine can process faster with less distractions.

 On Nov 21, 7:00 pm, Justin Collum jcol...@gmail.com wrote:
  I understand that these files map to R classes (generated). So I see
  why punctuation characters (most) are disallowed. But I can't for the
  life of me think of why main would be allowed but Main would not.
  Why not something like firstScreen?  Is there something about
  generated files that I'm missing? Do caps screw them up somehow? I'd
  like to make a view named defineNewList or something along those
  lines. Annoying to have to use underscores: define_new_list.

-- 
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: Help me: Build Android SDK for eclipse on win XP, and customize android source code!

2010-09-28 Thread FrankG


On 28 Sep., 05:51, Tuyen Hoang Long tuyen...@gmail.com wrote:
 Thanks for your rely,

  I still meet three proplems as below:

 1.      I build Android SDK in Linux, but when building was finished, I get
 SDK which only use in ubuntu. I use window XP so, I want to build a SDK for
 eclipse on Window XP, it make me esealy for developing! How can I buil a SDK
 for eclipse on Window XP?

Sounds for me, as you try to build you own , very private version of
android, which
you will deploy only on your phone ?

I wouldn't waste my time to switch between Ubuntu and Windows if you
are using
a modified android framework.

 2.      I will check license on the Email etc again. But, I have a question:
 How can I customine applications in Android 2.2 as Email, Phone, Music,
 SMS...? I want to build them for my own Android OS ( ex:  Android OS 2.1 on
 HTC Desire, some applications were customined). How can I do it?  

I would say such prebuild apps on the platform are not intended to be
modified.

Good luck !

   Frank

  Please help me!

  Thank you very much,

 Hoang Long Tuyen!

 On 28 September 2010 06:08, Indicator Veritatis mej1...@yahoo.com wrote:





  You say 2 problem, but what you describe as #1 does not sound like a
  problem. Of course a build for Ubuntu will be only for Ubuntu. What
  were you expecting?

  As for #2, double check the license on the Email etc. Android OS is
  open source, but not every application running under Android is also
  open source. If it is not, then of course you won't find the packages
  in the source for Android OS.

  Finally, questions about building Android OS really belong in one of
  the groups listed athttp://source.android.com/community/index.html.
  Read the list and decide for yourself which is really the best match
  for what you are trying to do.

  On Sep 24, 7:19 pm, Ngo Family tuyen...@gmail.com wrote:
   Hi you,

   I have 2 problem that I can't solute. Could you help me, please?

   1. I built SDK Android on Ubuntu OS completely. But this SDK only for
   eclipse on Ubuntu OS.

   I want to create SDK for Window XP. How can I do that? Does it like
   how to built SDK Android on Ubuntu OS?
   2. I download Apps in Android source code such as: Email, Calendar,
   Music, Setting,... but when I import them into eclipse, it have some
   errors: project Calendar requires import android.provider.Calendar;,
   import android.provider.Calendar.Events;,... So where can I download
   android.provider.calendar, android.provider.calendar.Events...
   from? Or how can I set up environment?

   Thank you very much!

  --
  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.comandroid-developers%2bunsubs­cr...@googlegroups.com
  For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

 --
 Hoang Long Tuyen
 Mobile:  0986323119
 Email: tuyen...@gmail.com- Zitierten Text ausblenden -

 - Zitierten Text anzeigen -

-- 
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: Help me: Build Android SDK for eclipse on win XP, and customize android source code!

2010-09-27 Thread Tuyen Hoang Long
Thanks for your rely,

 I still meet three proplems as below:

1.  I build Android SDK in Linux, but when building was finished, I get
SDK which only use in ubuntu. I use window XP so, I want to build a SDK for
eclipse on Window XP, it make me esealy for developing! How can I buil a SDK
for eclipse on Window XP?

2.  I will check license on the Email etc again. But, I have a question:
How can I customine applications in Android 2.2 as Email, Phone, Music,
SMS...? I want to build them for my own Android OS ( ex:  Android OS 2.1 on
HTC Desire, some applications were customined). How can I do it?  How can I
create an enviroment for coding, developing?

I download and import source code from: ‘
https://review.source.android.com/#admin,projects’. I met some error
requires import android.provider.Calendar;,
import android.provider.Calendar.Events;…, So how can I fix it?



 Please help me!

 Thank you very much,

Hoang Long Tuyen!


On 28 September 2010 06:08, Indicator Veritatis mej1...@yahoo.com wrote:

 You say 2 problem, but what you describe as #1 does not sound like a
 problem. Of course a build for Ubuntu will be only for Ubuntu. What
 were you expecting?

 As for #2, double check the license on the Email etc. Android OS is
 open source, but not every application running under Android is also
 open source. If it is not, then of course you won't find the packages
 in the source for Android OS.

 Finally, questions about building Android OS really belong in one of
 the groups listed at http://source.android.com/community/index.html.
 Read the list and decide for yourself which is really the best match
 for what you are trying to do.

 On Sep 24, 7:19 pm, Ngo Family tuyen...@gmail.com wrote:
  Hi you,
 
  I have 2 problem that I can't solute. Could you help me, please?
 
  1. I built SDK Android on Ubuntu OS completely. But this SDK only for
  eclipse on Ubuntu OS.
 
  I want to create SDK for Window XP. How can I do that? Does it like
  how to built SDK Android on Ubuntu OS?
  2. I download Apps in Android source code such as: Email, Calendar,
  Music, Setting,... but when I import them into eclipse, it have some
  errors: project Calendar requires import android.provider.Calendar;,
  import android.provider.Calendar.Events;,... So where can I download
  android.provider.calendar, android.provider.calendar.Events...
  from? Or how can I set up environment?
 
  Thank you very much!

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




-- 
Hoang Long Tuyen
Mobile:  0986323119
Email: tuyen...@gmail.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] Re: Help me out with my Listview custom row layout, I already tried many combinations

2010-06-16 Thread Kumar Bibek
There are some errors I found. Have a look at this xml.

But without knowing what exactly you want, I can't really help you
with the layout. A screenshot will be helpful.

?xml version=1.0 encoding=utf-8?
RelativeLayout xmlns:android=http://schemas.android.com/apk/res/
android
android:layout_width=fill_parent
android:layout_height=wrap_content
android:padding=4dip
ImageView android:id=@+id/icon android:layout_width=48dip
android:layout_height=48dip android:src=@drawable/icon
android:layout_marginRight=4dip /
ImageButton android:id=@+id/android_button
android:layout_width=48dip android:layout_height=48dip
android:src=@drawable/icon android:background=#
android:layout_toRightOf=@id/icon 
android:layout_alignRight=@+id/
centerText /
LinearLayout android:id=@+id/centertext
android:layout_height=wrap_content 
android:orientation=vertical
android:layout_below=@id/icon 
android:layout_width=fill_parent
TextView android:id=@+id/titletext android:textSize=16sp
android:textStyle=bold android:text=Text One
android:layout_width=fill_parent
android:layout_height=wrap_content /
TextView android:id=@+id/summarytext
android:layout_width=fill_parent
android:layout_height=fill_parent 
android:textSize=10sp
android:singleLine=false android:text=Text Two /
/LinearLayout
/RelativeLayout

Thanks and Regards,
Kumar Bibek
http://tech-droid.blogspot.com

On Jun 13, 7:42 pm, Shai levys...@gmail.com wrote:
 Hi,
 I am having trouble getting my layout to give me result I need, I
 already tried many options and it seems that I'm doing something wrong
 or completely missing something.

 I have a listview with a custom row layout I can't seem to working
 although it shouldn't be complex.
 I need of the list row to insist of:

 Icon --  title text (bigger and bold) with a short multi line text
 under the title -- ImageButton

 My problem in most of my tests is the icon to the right usually
 doesn't appear, I guess my center group grows and takes all the space
 of the button.
 My last failed attempt was with a Relative Layout, didn't have too
 much luck with a Linear Layout either.

 Here is the row XML:

 ?xml version=1.0 encoding=utf-8?
 RelativeLayout xmlns:android=http://schemas.android.com/apk/res/
 android
      android:layout_width=fill_parent
      android:layout_height=wrap_content
      android:padding=4dip
     ImageView
         android:id=@+id/icon
         android:layout_width=48dip
         android:layout_height=48dip
         android:src=@drawable/icon
         android:layout_marginRight=4dip
         /

   LinearLayout
          android:id=@+id/centertext
      android:layout_width=wrap_content
      android:layout_height=wrap_content
      android:layout_toRightOf=@+id/icon
      android:orientation=vertical
          
         TextView
             android:id=@+id/titletext
             android:textSize=16sp
             android:textStyle=bold
             android:textColor=@color/titlecolor
             android:layout_width=fill_parent
             android:layout_height=wrap_content

             /
         TextView
                 android:id=@+id/summarytext
             android:layout_width=fill_parent
                 android:layout_height=fill_parent
             android:textSize=10sp
             android:textColor=@color/titlecolor
             android:singleLine=false

         /
     /LinearLayout

     ImageButton
     android:id=@+id/android_button
     android:layout_width=48dip
     android:layout_height=48dip
     android:layout_toRightOf=@+id/centertext
     android:src=@drawable/playbutton
     android:background=#
         /

 /RelativeLayout

 Any pointers on what am I doing wrong ?  Would you suggest keeping the
 relative view or dropping it ?

 How can I force my vertical LinearLayout (@+id/centertext) to leave
 space for my button ? I tried both 'wrap_content' and 'fill_parent'

-- 
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: help me

2010-02-23 Thread dillirao malipeddi
please write these lines inside button click listener code *not in
onCreate()*

username = name.getText().toString();
password = pass.getText().toString();


On Fri, Feb 19, 2010 at 2:47 PM, SREEHARI
sreehari.madhusooda...@wipro.comwrote:

 As Darshana said u dint say what is the exact problem.
 Is this code getting failed for authentication??
 Use .equals instead of ==

 *if (username.equals(kami)  password.equals(kami))

 Hope this will work


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




-- 
Thank you,
Dilli Rao. M
www.arijasoft.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] Re: help me

2010-02-19 Thread SREEHARI
As Darshana said u dint say what is the exact problem.
Is this code getting failed for authentication??
Use .equals instead of ==

*if (username.equals(kami)  password.equals(kami))

Hope this will work


-- 
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: help me

2010-02-13 Thread deeMurthy
Hey
Can u elaborate on the emulator problem ?
What issue are you facing exactly?

On Feb 13, 8:51 am, kamran Manzoor kamranmanzoor...@gmail.com wrote:
 the code is here with emulator problrm
 package com.net.login;

 import android.app.Activity;
 import android.content.DialogInterface.OnClickListener;
 import android.os.Bundle;
 import android.view.View;
 import android.widget.Button;
 import android.widget.EditText;
 import android.widget.TextView;

 public class login extends Activity {
     /** Called when the activity is first created. */
  String username , password;
     Button login;
     TextView tv = new TextView(this);
     EditText name = new EditText(this);
     EditText pass =new EditText(this);
 �...@override
     public void onCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);
         setContentView(R.layout.main);
         //

 //
         name = (EditText)findViewById(R.id.user_name);
         pass = (EditText)findViewById(R.id.password);
         login = (Button)this.findViewById(R.id.login);
 
         username = name.getText().toString();
         password = pass.getText().toString();
         login.setOnClickListener((android.view.View.OnClickListener)
 loginListener);
     }
     private OnClickListener loginListener = new OnClickListener()
     {
         public void onClick(View v)
         {
          if (username == kami  password == kami)
          {
           //TextView tv = new TextView(this);
                 tv.setText( Login is Proved);
                 setContentView(tv);

           //System.out.println(login proved);
          }
          else
          {
 //          TextView tv = new TextView(this);
                 tv.setText( Passwod is incorrect );
                 setContentView(tv);

          }
           //System.out.println(login proved);
         }

     };

 }

 plz help me if anyone know?

 thanx
 kamran Manzoor
 FAST-NU

-- 
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: help me Installation error: INSTALL_FAILED_UPDATE_INCOMPATIBLE

2009-11-10 Thread RichardC
You can't unless you are making your own device and therefore you own
the platform private key.

If you are building your own device then I suggest you might get more
of a response in:
http://groups.google.com/group/android-platform/topics
or
http://groups.google.com/group/android-porting/topics

--
RichardC

On Nov 10, 6:35 am, hehui he...@yulong.com wrote:
 how  to sign the  apk  with  the  the platform certificate  ?

 On Nov 10, 2:24 pm, hehui he...@yulong.com wrote:

  can  you  explain  in  detial ?

  On Nov 9, 8:48 pm, Ola stens...@gmail.com wrote:

   If you want to use android:sharedUserId=android.uid.system you have
   to sign your apk file with the platform certificate, i.e. the
   certificate your phone's software was built with.

   //O

   On Nov 6, 10:51 am, hehui he...@yulong.com wrote:

when  I    add        android:sharedUserId=android.uid.system  to
the  AndroidManifest.xml file   the  project  can not  be  installed
on  G2  . the  error  is                   Installation error:
INSTALL_FAILED_UPDATE_INCOMPATIBLE                 who  can  help
me  ?  Thanks in  advance  !- Hide quoted text -

   - Show quoted text -- 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] Re: help me Installation error: INSTALL_FAILED_UPDATE_INCOMPATIBLE

2009-11-09 Thread Ola
If you want to use android:sharedUserId=android.uid.system you have
to sign your apk file with the platform certificate, i.e. the
certificate your phone's software was built with.

//O

On Nov 6, 10:51 am, hehui he...@yulong.com wrote:
 when  I    add        android:sharedUserId=android.uid.system  to
 the  AndroidManifest.xml file   the  project  can not  be  installed
 on  G2  . the  error  is                   Installation error:
 INSTALL_FAILED_UPDATE_INCOMPATIBLE                 who  can  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


[android-developers] Re: help me Installation error: INSTALL_FAILED_UPDATE_INCOMPATIBLE

2009-11-09 Thread hehui

can  you  explain  in  detial ?


On Nov 9, 8:48 pm, Ola stens...@gmail.com wrote:
 If you want to use android:sharedUserId=android.uid.system you have
 to sign your apk file with the platform certificate, i.e. the
 certificate your phone's software was built with.

 //O

 On Nov 6, 10:51 am, hehui he...@yulong.com wrote:



  when  I    add        android:sharedUserId=android.uid.system  to
  the  AndroidManifest.xml file   the  project  can not  be  installed
  on  G2  . the  error  is                   Installation error:
  INSTALL_FAILED_UPDATE_INCOMPATIBLE                 who  can  help
  me  ?  Thanks in  advance  !- 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] Re: help me Installation error: INSTALL_FAILED_UPDATE_INCOMPATIBLE

2009-11-09 Thread hehui
how  to sign the  apk  with  the  the platform certificate  ?

On Nov 10, 2:24 pm, hehui he...@yulong.com wrote:
 can  you  explain  in  detial ?

 On Nov 9, 8:48 pm, Ola stens...@gmail.com wrote:



  If you want to use android:sharedUserId=android.uid.system you have
  to sign your apk file with the platform certificate, i.e. the
  certificate your phone's software was built with.

  //O

  On Nov 6, 10:51 am, hehui he...@yulong.com wrote:

   when  I    add        android:sharedUserId=android.uid.system  to
   the  AndroidManifest.xml file   the  project  can not  be  installed
   on  G2  . the  error  is                   Installation error:
   INSTALL_FAILED_UPDATE_INCOMPATIBLE                 who  can  help
   me  ?  Thanks in  advance  !- Hide quoted text -

  - Show quoted text -- 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] Re: Help me: My emulator reported an error that com.android.settings has no certificates at entry AndroidManifest.xml

2009-10-28 Thread yagbu

I verified the signature of my modified settings.apk by jarsigner
tool.
$jarsigner -verify settings.apk

It reported that jar verified.

So the signature of settings.apk should be right. But why did it
report error of has no certificates at install stage?

On 10月23日, 下午10时29分, yagbu yagbu.c...@gmail.com wrote:
 Hi,

 I did some modification about the java code and AndroidManifest.xml of
 com.android.settings package.
 Then I ran the emulator like this:
 make;
 lunch 1;
 emulator 

 When PackageManagerService was scanning the /system/app/Settings.apk
 packages at boot time, it reported an error that com.android.settings
 has no certificates at entry AndroidManifest.xml.

 I guess my modified Settings.apk could not pass the signature
 verify. How can I run my modified Settings.apk successfully?
 Could anybody help me?

 Thanks,yagbu
--~--~-~--~~~---~--~~
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: Help me: My emulator reported an error that com.android.settings has no certificates at entry AndroidManifest.xml

2009-10-28 Thread RichardC

Looks like a question for
http://groups.google.com/group/android-platform
or
http://groups.google.com/group/android-porting

If I am right and you are modifying the Android platform code I think
it needs to be signed with a key you do not have.

--
RichardC

On Oct 28, 12:30 pm, yagbu yagbu.c...@gmail.com wrote:
 I verified the signature of my modified settings.apk by jarsigner
 tool.
 $jarsigner -verify settings.apk

 It reported that jar verified.

 So the signature of settings.apk should be right. But why did it
 report error of has no certificates at install stage?

 On 10月23日, 下午10时29分, yagbu yagbu.c...@gmail.com wrote:

  Hi,

  I did some modification about the java code and AndroidManifest.xml of
  com.android.settings package.
  Then I ran the emulator like this:
  make;
  lunch 1;
  emulator 

  When PackageManagerService was scanning the /system/app/Settings.apk
  packages at boot time, it reported an error that com.android.settings
  has no certificates at entry AndroidManifest.xml.

  I guess my modified Settings.apk could not pass the signature
  verify. How can I run my modified Settings.apk successfully?
  Could anybody help me?

  Thanks,yagbu


--~--~-~--~~~---~--~~
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: help me pliiiiiz

2009-10-27 Thread Charlie Collins

Context has a setWallpaper method:
http://developer.android.com/reference/android/content/Context.html#setWallpaper%28java.io.InputStream%29.

An example of it in use (look for SetWallpaperTask):
http://code.google.com/p/apps-for-android/source/browse/trunk/Photostream/src/com/google/android/photostream/ViewPhotoActivity.java


On Oct 27, 5:08 am, iori baallal.abderra...@gmail.com wrote:
 hello every body,im trying to change the system wallpaper,i have tried
 a lot of solution but without any result;
 please i want have a simple code to do it

 thanks a lot
--~--~-~--~~~---~--~~
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: help me pliiiiiz

2009-10-27 Thread Charlie Collins

Sorry, also just noticed that for API level 5 and above there is newer
WallpaperManager.
http://developer.android.com/reference/android/app/WallpaperManager.html

On Oct 27, 5:08 am, iori baallal.abderra...@gmail.com wrote:
 hello every body,im trying to change the system wallpaper,i have tried
 a lot of solution but without any result;
 please i want have a simple code to do it

 thanks a lot
--~--~-~--~~~---~--~~
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: help me

2009-06-23 Thread Marco Nelissen
You can only get key events in a UI, and a service does not have a UI.


On Tue, Jun 23, 2009 at 2:33 AM, Dorjoo B dorjnamjir...@gmail.com wrote:


 how to detect key event in android service ? 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
-~--~~~~--~~--~--~---



[android-developers] Re: Help me solve my Ambiguity regarding Activity

2009-02-24 Thread nagaraj attimani
Case 1: Activity is started using action
Action might be same for few activities.. User need 2 select an activity
depending on req.
Most of the time.. class name are not visible ..

Case 2 : Activity is started by refering a class name
As class name can be unique.

Intent resolver will resolve rqd intent action from list of avilable intents
in service manager. User need select if 2 activity may pop fopr same action.



On Tue, Feb 24, 2009 at 6:44 PM, gganesh ganesh@gmail.com wrote:


 hi friends,
 What is the difference between starting an new Activity by case :1 and
 case: 2

 case : 1

   Intent i= new Intent(com.android.google.Anyname)
   startActivity(i);

 case: 2

   Intent i = new Intent(this, newActivity.class);
   startSubActivity(i, ACTIVITY_CREATE);

 what is the scenario which decides to chose between those two options
 to start an Activity
 Thanks

 



-- 
Best Regards
Nagaraj

--~--~-~--~~~---~--~~
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: Help me solve my Ambiguity regarding Activity

2009-02-24 Thread mathiastck

http://groups.google.com/group/android-developers/browse_thread/thread/1c94a1d6d070b0b0

On Feb 24, 5:14 am, gganesh ganesh@gmail.com wrote:
 hi friends,
 What is the difference between starting an new Activity by case :1 and
 case: 2

 case : 1

            Intent i= new Intent(com.android.google.Anyname)
            startActivity(i);

 case: 2

            Intent i = new Intent(this, newActivity.class);
            startSubActivity(i, ACTIVITY_CREATE);

 what is the scenario which decides to chose between those two options
 to start an Activity
 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
-~--~~~~--~~--~--~---



[android-developers] Re: Help me to test APK file on your real device

2008-11-23 Thread Lefty

You can also checkout www.uTest.com.

Good luck!

R

On Nov 22, 1:22 am, Peter [EMAIL PROTECTED] wrote:
 Hi Ulziisaikhan,

 There's a (fairly) new service that enables developers to test their
 mobile application on a real device by a variety of different testers:

 http://www.testarmy.com/

 If you can't obtain (or afford) a real Android device then this could
 be a cheap option.

 Regards,
 Peter

 On Oct 10, 8:44 pm, Ulzii [EMAIL PROTECTED] wrote:

  Hi All,

  I have finished an application for the Android platform device.

  I am writing from Ulaanbaatar, Mongolia. It means there is no
  possibility to test apk file on real android gPhone device.

  Is there anyone who obtained gPhone, could you help me to test my APK
  file on your device.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Help me to test APK file on your real device

2008-11-22 Thread Peter

Hi Ulziisaikhan,

There's a (fairly) new service that enables developers to test their
mobile application on a real device by a variety of different testers:

http://www.testarmy.com/

If you can't obtain (or afford) a real Android device then this could
be a cheap option.

Regards,
Peter

On Oct 10, 8:44 pm, Ulzii [EMAIL PROTECTED] wrote:
 Hi All,

 I have finished an application for the Android platform device.

 I am writing from Ulaanbaatar, Mongolia. It means there is no
 possibility to test apk file on real android gPhone device.

 Is there anyone who obtained gPhone, could you help me to test my APK
 file on your device.


--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Help me to test APK file on your real device

2008-11-22 Thread Dorn Hetzel

I suppose you could also upload it to the marketplace under maybe the
Demo category and name it TestMePlease :)

On Sat, Nov 22, 2008 at 1:22 AM, Peter [EMAIL PROTECTED] wrote:

 Hi Ulziisaikhan,

 There's a (fairly) new service that enables developers to test their
 mobile application on a real device by a variety of different testers:

 http://www.testarmy.com/

 If you can't obtain (or afford) a real Android device then this could
 be a cheap option.

 Regards,
 Peter

 On Oct 10, 8:44 pm, Ulzii [EMAIL PROTECTED] wrote:
 Hi All,

 I have finished an application for the Android platform device.

 I am writing from Ulaanbaatar, Mongolia. It means there is no
 possibility to test apk file on real android gPhone device.

 Is there anyone who obtained gPhone, could you help me to test my APK
 file on your device.


 


--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Help me to test APK file on your real device

2008-11-22 Thread Evgeny V
Hi!

I have a similar question.
f it's possible to upload apk directly from comp to device?
Thanks
On Sat, Nov 22, 2008 at 6:23 PM, Dorn Hetzel [EMAIL PROTECTED] wrote:


 I suppose you could also upload it to the marketplace under maybe the
 Demo category and name it TestMePlease :)

 On Sat, Nov 22, 2008 at 1:22 AM, Peter [EMAIL PROTECTED] wrote:
 
  Hi Ulziisaikhan,
 
  There's a (fairly) new service that enables developers to test their
  mobile application on a real device by a variety of different testers:
 
  http://www.testarmy.com/
 
  If you can't obtain (or afford) a real Android device then this could
  be a cheap option.
 
  Regards,
  Peter
 
  On Oct 10, 8:44 pm, Ulzii [EMAIL PROTECTED] wrote:
  Hi All,
 
  I have finished an application for the Android platform device.
 
  I am writing from Ulaanbaatar, Mongolia. It means there is no
  possibility to test apk file on real android gPhone device.
 
  Is there anyone who obtained gPhone, could you help me to test my APK
  file on your device.
 
 
  
 

 


--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Help me to test APK file on your real device

2008-11-22 Thread EvgenyV

Hi!

I have a similar question.
f it's possible to upload apk directly from comp to device?

Thanks

On Nov 22, 6:23 pm, Dorn Hetzel [EMAIL PROTECTED] wrote:
 I suppose you could also upload it to the marketplace under maybe the
 Demo category and name it TestMePlease :)



 On Sat, Nov 22, 2008 at 1:22 AM, Peter [EMAIL PROTECTED] wrote:

  Hi Ulziisaikhan,

  There's a (fairly) new service that enables developers to test their
  mobile application on a real device by a variety of different testers:

 http://www.testarmy.com/

  If you can't obtain (or afford) a real Android device then this could
  be a cheap option.

  Regards,
  Peter

  On Oct 10, 8:44 pm, Ulzii [EMAIL PROTECTED] wrote:
  Hi All,

  I have finished an application for the Android platform device.

  I am writing from Ulaanbaatar, Mongolia. It means there is no
  possibility to test apk file on real android gPhone device.

  Is there anyone who obtained gPhone, could you help me to test my APK
  file on your device.- 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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Help me to test APK file on your real device

2008-11-22 Thread Mark Murphy

EvgenyV wrote:
 Hi!
 
 I have a similar question.
 f it's possible to upload apk directly from comp to device?

With the SDK, you install an APK on the device the same way you install 
the APK on the emulator, so long as the device is plugged into the PC 
via the USB cable:

http://code.google.com/android/intro/develop-and-debug.html

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com

Android Training on the Ranch! -- Mar 16-20, 2009
http://www.bignerdranch.com/schedule.shtml

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: ::Help me Please....!!!!

2008-11-08 Thread Christine

A subject line of help me please doesn't really invite people to
come see what you're asking.

On Nov 8, 12:13 pm, Imran [EMAIL PROTECTED] wrote:
 Hi

  In my Application i have scenario where the Button Should be in
 Pressed mode for few seconds and than it should be in unpressed mode

  i have tried using thread But its not working

 bt.setPressed(true);
 Thread.sleep(2000);
 bt.setPressed(false);

 this logic is not working... the Button is always in Unpressed mode
 Only

 please help me out...

 Thanks in Advance for Any replays...!

 Cheers
 Imran
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: ::Help me Please....!!!!

2008-11-08 Thread hackbod

Android's UI is event driven, so if you block that thread it will stop
doing things.  Use a Handler to schedule a message in the future at
which you will turn off the pressed state.

On Nov 8, 3:13 am, Imran [EMAIL PROTECTED] wrote:
 Hi

  In my Application i have scenario where the Button Should be in
 Pressed mode for few seconds and than it should be in unpressed mode

  i have tried using thread But its not working

 bt.setPressed(true);
 Thread.sleep(2000);
 bt.setPressed(false);

 this logic is not working... the Button is always in Unpressed mode
 Only

 please help me out...

 Thanks in Advance for Any replays...!

 Cheers
 Imran
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Help me to test APK file on your real device

2008-10-10 Thread Al Sutton

Hi Ulziisaikhan,

If you want to list it at AndAppStore.com with a note in your description about 
it being for testing purposes feel free. Part of what I'm trying to achieve 
with AndAppStore is creating a place where users can not only get finished 
apps, but also help by testing out up and coming programs.

Al.

Ulzii wrote:
 Hi All,

 I have finished an application for the Android platform device.

 I am writing from Ulaanbaatar, Mongolia. It means there is no
 possibility to test apk file on real android gPhone device.

 Is there anyone who obtained gPhone, could you help me to test my APK
 file on your device.

 My APK file is located on next link.

 http://terelj.googlepages.com/ToDoListApplet.apk

 Next link touches screenshots of my application.

 http://water.appspot.com/

 Thanks,

 Any help would be greatly appreciated!

 Ulziisaikhan
 
   


--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---