intent intent=new intent(mainactivity.this, secondactivity.class);
startactivity(intent);
intent intent = new intent();
intent.setaction("
testactivity
");intent.addcategory("
test
");startactivity(intent);
mainfest:
android:name="com.example.mytest.testactivity"
testactivity
" />
test
" />
1.只有intent同時匹配action,category,data 才算完全匹配,才能啟動目標activity
2.如果在mainfest裡面有多個 ,intent 只需要匹配乙個就能成功啟動
3. action匹配規則: intent中的
action 能夠和 中的任何乙個
action完全相同(大小寫也要一樣),才匹配成功
4. category匹配規則:intent中所有的
category 都必須和中的任何乙個
category 完全相同,才匹配成功
5.data匹配規則:好像好複雜, 看這貼:
intent-filter 之 data
3.注意
1.如果要採用隱顯呼叫,category 都必須寫上
2.這一組 action 和 category 比較重要,二者的共同作用是用來標明這是乙個入口activity,缺少乙個就沒有意義了
學習筆記3
第四單元 了解linux檔案系統 1.絕對路徑和相對路徑 a.絕對路徑 無論在系統的任何位置,從系統的頂級目錄 根目錄 一級一級往下排的表示方法 b.相對路徑 如果已經在某乙個目錄下面操作,那麼可以省略從根目錄到當前目錄的表示,若要切到該目錄下的任意位置,直接表示 2.系統中根目錄下子目錄的作用 a...
學習筆記3
乙個簡單的程式 import tensorflow as tf 定義網路結構和前向傳播演算法 def get weight shape w tf.variable return w def get bias shape b tf.variable return b def forward x,sha...
學習筆記3
vivew 裡面的引數 與前端約定好 return 返回的是乙個例項化物件,字串 render 將資料寫入html中 再返回給前端 本質是把python物件嵌入其中 傳給檢視函式的永遠轉換成字串 url 設定名字 相當於 這個名字與值 以鍵值對的形式發給了 檢視函式 name 200 別名的前提是訪...