Android Open Source - TheNewBoston Data






From Project

Back to project page TheNewBoston.

License

The source code is released under:

Eclipse Public License - v 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECI...

If you think the Android project TheNewBoston listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.homelysoft.thenewboston;
//w ww .j  a va2 s .c o  m
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;

public class Data extends Activity implements View.OnClickListener{
  
  Button start, startFor;
  EditText send;
  TextView receivedAnswer;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.send);
    bridgeXML();
    setOnclickListeners();
    
  }
  
  public void bridgeXML()
  {
    start=(Button)findViewById(R.id.b_start_activity);
    startFor=(Button)findViewById(R.id.b_start_activity_for_result);
    send=(EditText)findViewById(R.id.et_send);
    receivedAnswer=(TextView)findViewById(R.id.tv_received);
  }
  
  public void setOnclickListeners()
  {
    start.setOnClickListener(this);
    startFor.setOnClickListener(this);
  }

  @Override
  public void onClick(View v) {
    
    switch(v.getId())
    {
    case R.id.b_start_activity:
      Bundle basket = new Bundle();
      basket.putString("myString", send.getText().toString());
      Intent sendData=new Intent(Data.this,OpenedClass.class);
      sendData.putExtras(basket);
      startActivity(sendData);
      break;
    case R.id.b_start_activity_for_result:
      Intent intent=new Intent(Data.this,OpenedClass.class);
      startActivityForResult(intent, 0);
      break;
    }
  }

  @Override
  protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    if(resultCode==RESULT_OK)
    {
      Bundle backpack=data.getExtras();
      String user_choice=backpack.getString("SELECTED_NOUN");
      receivedAnswer.setText(user_choice);
    }
  }

}




Java Source Code List

com.homelysoft.thenewboston.AboutUs.java
com.homelysoft.thenewboston.Accelerate.java
com.homelysoft.thenewboston.Data.java
com.homelysoft.thenewboston.Email.java
com.homelysoft.thenewboston.ExternalData.java
com.homelysoft.thenewboston.Flipper.java
com.homelysoft.thenewboston.Home.java
com.homelysoft.thenewboston.HotOrNot.java
com.homelysoft.thenewboston.InternalData.java
com.homelysoft.thenewboston.OpenedClass.java
com.homelysoft.thenewboston.OurViewClient.java
com.homelysoft.thenewboston.Photo.java
com.homelysoft.thenewboston.Preferences.java
com.homelysoft.thenewboston.SQLView.java
com.homelysoft.thenewboston.SQLite.java
com.homelysoft.thenewboston.SharedPrefs.java
com.homelysoft.thenewboston.Slider.java
com.homelysoft.thenewboston.SoundPoolPlay.java
com.homelysoft.thenewboston.Splash.java
com.homelysoft.thenewboston.StartingPoint.java
com.homelysoft.thenewboston.Tabs.java
com.homelysoft.thenewboston.TextPlay.java
com.homelysoft.thenewboston.gfx.GFXSurface.java
com.homelysoft.thenewboston.gfx.GFX.java
com.homelysoft.thenewboston.gfx.MyBringBack.java
com.homelysoft.thenewboston.vect.Vector.java