In my application I need a variable from one activity to another activity without using any intent. So I have declared that variable as static and used as FirstActivity.a but this is returning so null, Hence I have created a class that extends application and declared that variable there still I am getting null. no clue how to achieve this.
Googled a lot but everyone are suggesting either to use static or extend Application class, unfortunately both are not working for me.
Application class:
public class ApplicationClass extends Application{ private String StockName; public String getStockName() { return StockName; } public void setStockName(String stockName) { StockName = stockName; } } Setting the variable in one activity as:
public class Detail extends Activity{ ApplicationClass ac; protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.stockdetail); ac=new ApplicationClass(); ac.setStockName(getIntent().getExtras().getString("StockName")); } Retriving the variable in another class as:
public class Table { Context c1; Cursor c; ApplicationClass ac=new ApplicationClass(); public String selectdate="Select " + column1 + " as _id, " + column2 + " From " + tablename + " Where " + column3 + " = " + ac.getStockName(); I'm not sure how to achieve this.
Edit
public class Detail extends Activity{ public static sname; protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.stockdetail); sname=getIntent().getExtras().getString("StockName"); } public class Table { Context c1; Cursor c; public String selectdate="Select " + column1 + " as _id, " + column2 + " From " + tablename + " Where " + column3 + " = " + Detail.sname;
ApplicationClass ac=new ApplicationClass();) again inTableclass?