so basically i created a URL in the onCreate method, and i want to pass it with an intent just when i click on a button. The URL is created but i can't send it to The NeXT activity because it's just in The oncreate method. What should i do ?

link|improve this question

67% accept rate
2  
You should probably learn some basic java before going into android. – Falmarri Jan 15 '11 at 0:34
feedback

1 Answer

Create a class variable and assign it the url in the onCreate.

   public class MyActiviy extends Activty {
       private URL myURL;

       public static void onCreate(Bundle bundle) {
           myURL={insert new URL};
       }
   }
link|improve this answer
It's kind of crazy but i tricked the app, i just pass it through a textview . and it's work . – Tsunaze Jan 15 '11 at 11:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.