我在第一个活动中调用第二个活动值,但它没有显示。告诉我为什么?如果我在第一个活动中声明公共静态字符串并在第二个活动中调用显示完美但是如果我在第二个活动中声明公共静态字符串值并且在第一个活动中调用显示为 null 告诉我为什么?
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
public class ButtonExample extends Activity
{
Button b1;
String Latitude500;
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
b1 = (Button) findViewById(R.id.button1);
Latitude500=textview.Latitude1nazeer;
TextView t3 = (TextView) findViewById(R.id.textView2);
t3.setText(""+Latitude500);
b1.setOnClickListener(new OnClickListener()
{
public void onClick(View v)
{
Intent intent = new Intent(ButtonExample.this, textview.class);
startActivity(intent);
}
});
public class textview extends Activity {
public static String Latitude1nazeer;
EditText Latituden1;
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.laymenu);
Latituden1 = (EditText) findViewById(R.id.editText2);
String ln = Latituden1.getText().toString();
Latitude1nazeer=ln;
}
}
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mypackage"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".ButtonExample"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".textview" > </activity>
</application>
</manifest>