ما يسمى حدث Android مرة واحدة فقط حتى يتم تدمير النشاط؟

StackOverflow https://stackoverflow.com/questions/9027507

  •  14-11-2019
  •  | 
  •  

سؤال

أبحث عن إجابة واحدة (لكنني قد أسأل السؤال الخطأ)

السؤال - هل يسمى أي حدث فقط بمجرد إجمالي النشاط حتى يتم تدمير النشاط؟

أسأل لأنه عندما يقوم مستخدمي بتدوير الهاتف إلى OnCreate من المناظر الطبيعية ويتم استدعاء كلاهما مسببا إلى إعادة تحميل أنواع.

أنا أبحث عن حدث يمكنني وضع السلوك في ذلك من شأنه أن يتم تشغيل 1x فقط (حتى يتم قتل النشاط)

شكرا لك مقدما

هل كانت مفيدة؟

المحلول

If it is specific to the Activity just check your savedInstanceState parameter in the onCreate event. If it is null, run your code, if not, your code has already been run.

Example:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    if(savedInstanceState == null) {
        // Run your code
    }        
}

savedInstanceState will always be null when onCreate is run for the first time, and it will be populated thereafter.

نصائح أخرى

You don't really specify what you're trying to do with it, so I can't guarantee this is appropriate for your use, but Application.onCreate is only called once.

If you want to eliminate the recreation of your activity on an orientationchange you can listen for configchanges in the manifest.

    <activity
            android:name=".MyActivity"
            android:configChanges="orientation" >
    </activity>

And then you can override onConfigurationChanged like so:

@Override
public void onConfigurationChanged(Configuration newConfig) {
    super.onConfigurationChanged( newConfig );

    LinearLayout main = (LinearLayout) findViewById( R.id.mainLayout );
    main.requestLayout();
}

to recreate the layout so that it matches the new orientation, without recreating the entire activity.

Check http://developer.android.com/guide/topics/resources/runtime-changes.html to handle configuration changes and to maintain your huge data between them...if all you need to maintain between the configuration change is just the settings,you can use the onSavedInstanceState() and onRestoreInstanceState() callbacks and the given bundles.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top