Android getapplication()数据

时间:2011-07-18 08:39:42

标签: java android android-manifest

我正在使用getHotelName()setHotelName()在应用程序中存储数据,然后访问它。在我的主要活动中,分类为Launcher的方法和getApplication()都适用于此活动。但是当我尝试从主活动调用的另一个活动访问getApplication时,它会产生一个强制关闭错误。

这是我的清单文件:

<application android:icon="@drawable/icon" android:label="@string/app_short_name" android:name="RestaurantNetwork" android:allowClearUserData="true" android:theme="@android:style/Theme.Black" >

    <activity android:name="RestaurantActivity"
              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="NetworkCommunication"></activity>

    <uses-permission android:name="android.permission.INTERNET" />

</application> 

在主要活动中

RestaurantNetwork application = (RestaurantNetwork) getApplication();
application.setHotelName(this.hotelname.getText().toString());
Intent intent = new Intent(view.getContext(), NetworkCommunication.class);
startActivity(intent);

在NetworkCommunication活动中

public class NetworkCommunication extends Activity {
RestaurantNetwork application = (RestaurantNetwork) getApplication();
String hotelname = application.getHotelName().toString();

    @Override
    public void onCreate(Bundle savedInstanceState) {

1 个答案:

答案 0 :(得分:1)

我使用intent.extra解决了它,是的,我必须摆脱getApplication()。仍然想知道为什么在prev方法中出现错误

在我的主要活动中

    this.hotelname = (EditText) findViewById(R.id.HotelName);

//RestaurantNetwork application = (RestaurantNetwork)getApplication();
//application.setHotelName(this.hotelname.getText().toString());

 Intent intent = new Intent(view.getContext(), NetworkCommunication.class);
 intent.putExtra("hotelName",this.hotelname.getText().toString());
 startActivity(intent);

在我的第二个活动中

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.searchresults);

        String value = null;

        Bundle extras = getIntent().getExtras();
        if(extras !=null)
        {
          value = extras.getString("hotelName");
        }

        Toast.makeText(getApplicationContext(),value, Toast.LENGTH_SHORT).show();