Advertisement
thebys

Untitled

May 16th, 2011
423
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.48 KB | None | 0 0
  1. package cs.dogfight;
  2. import android.widget.TextView;
  3. import android.os.Bundle;
  4. import android.app.Activity;
  5.  
  6. public class dogfight extends Activity{
  7.  public void onCreate(Bundle savedInstanceState){
  8.      
  9.      super.onCreate(savedInstanceState);
  10.      setContentView(R.layout.main);
  11.      
  12.       int promena = 10;  
  13.      
  14.      
  15.      TextView view = (TextView) findViewById(R.id.view);
  16.      String vysledek; //co tohle?
  17.      vysledek = promena.ToString(); //anebo tohle? :)
  18.      view.setText(vysledek);
  19.  
  20.  }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement