activity自動跳轉的實現
使用handle在run()方法中實現,
**:handler mhandler = new handler();
mhandler.postdelayed(new runnable()
},1000);
注:handler.post(r)/postdelayed(r) r的**實際是在ui執行緒執行的,不是另開執行緒。所以在post方法中勿做耗時操作
使用intent傳遞資料
使用intent.put…()傳遞,其引數為key-value形式
splashactivity中
intent intent = new intent(splashactivity.this, mainactivity.class);
intent.putextra("title",title);
startactivity(intent);
mainactivity中
intent intent = getintent();
if (intent!=null)
public string getmusername()
public void setmusername(stringmusername)
public int getmage()
public void setmage(int mage)
splashactivity中
intent intent = newintent(splashactivity.this, mainactivity.class);
intent.putextra("userinfo",userinfo);
startactivity(intent);
mainactivity中
intent intent =getintent();
if (intent!=null)
},1000);
}@override
protected void onactivityresult(int requestcode, int resultcode, intent data) }}
mainactivty中:
button.setonclicklistener(new view.onclicklistener()
});acitivity生命週期
python第一周心得 Python第一周總結
變數 不能為系統自帶的內建函式,如def,help,sum等等 變數不能已下劃線數字來開頭,對大小寫敏感 變數後直接接數字,則被賦值為整型,如何加引號則賦值型別為字串str型別 a 1 整型 int b 2 字串 str 用print 直接輸出 a hello print a 在 使用者想要同時輸出...
第一周周記
下面是整個文章的第二部分,日常的安利 這周的話,除了整體恢復正常,週末我也購置了我的第一塊外接鍵盤,這裡的話我選擇的是國產的靜電容鍵盤niz的plum 87鍵鍵盤。今天拿到這個鍵盤第一天,整體使用了一下,尺寸配合著15寸的蘋果macbook pro可以說恰到好處,除此以外,整個鍵盤還是給我不少驚喜的...
Python 學習筆記(第一周)
usr bin env python 或者 usr bin python print hello world python 是解釋型語言,執行時需要讓系統了解是用哪種直譯器哪種格式解析檔案,所以要加 usr bin python 這兩種寫法都行,但是推薦第一種,優點是可以全域性搜尋python環境變...