คำถามติดแท็ก application-state

30
จะบันทึกสถานะกิจกรรมโดยใช้บันทึกสถานะอินสแตนซ์ได้อย่างไร
ฉันกำลังทำงานบนแพลตฟอร์ม Android SDK และยังไม่มีความชัดเจนในการบันทึกสถานะของแอปพลิเคชัน เพื่อให้ได้รับเครื่องมือใหม่เล็ก ๆ น้อย ๆ ของตัวอย่าง 'Hello, Android': package com.android.hello; import android.app.Activity; import android.os.Bundle; import android.widget.TextView; public class HelloAndroid extends Activity { private TextView mTextView = null; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); mTextView = new TextView(this); …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.