Android開發歷程_1(從1個activity跳轉到另一個activity)
今天第一次學習android開發,配置好了環境後就打算來個hello world程式,且實現從一個activity跳轉到另一個activity中去。
開發環境:android4.1.1
實驗功能:
在第一個Hello World!為標籤的activity中顯示good,該介面中有一個名為Next的按鈕。點選Next按鈕進入到第二個activity中去,第二個介面中只有1個Close按鈕。當然,據網上有人將要比較安全的實現關閉程式的功能也不是挺簡單的,因為android有專門的退出鍵返回鍵等。所以該Close按鈕暫時沒去實現它。
我的第1個activity為HelloworldActivity,第2個activity為NextActivity.
實驗說明:
1. 要實現從1個activity跳到另一個activity,這需要通過intent來實現。當然我們需要在Next按鈕上繫結一個按鈕按下的監聽器(這些好像是java中的知識,可我從沒學過java,只能用到哪個地方再去學了),一旦該按鈕監聽到有按鍵按下,則通過intent將指定的第2個activity觸發,這樣就完成了本次試驗的功能。
2.在工程中,每一個activity都對應一個xml檔案,xml檔案主要是控制各控制元件的位置和屬性的.
3. asserts目錄下可以存放任何檔案,res目錄下也可以存放任意檔案,且res下的檔案會在gen目錄下的R.java檔案中自動生成一個全域性id。
4. res目錄下的values目下的strings.xml中的控制元件也是每個控制元件都在R.jar中對應一個id號。當然layout下的main.xml檔案也是一樣的。
5. AndroidManifest.xml是整個應用程式的配置檔案。
6. android.jar是該程式應用的所有android類的來源。
7. view是android中所有控制元件的父類。
8. Activity可以理解為人機互動的介面,也可以理解為一個控制元件的容器。
9. eclipse中用crtl+shift+c註釋選中區域,同時也是用ctrl+shift+c取消選中區域,這裡的註釋為雙斜杆//.
如果用/**/來註釋的話,就是用ctrl+shift+/來註釋選中區域,用ctrl+shift+\來取消選中區域的註釋。
10. 用alt+/是增加單詞函式等補全功能的提示。
11. ctrl+shift+o可以自動新增eclipse中檢測到需要匯入的包檔案。
12. setText裡面不能採用資源引用,資源引用顯示文字應該是在xml中的。
13. xml的註釋不能出現在屬性值程式碼中,不能出現在標記中。且註釋格式為<!--註釋內容-->
14. xml語句結束後並不需要結束符號,比如說分號。
試驗結果(在模擬器中執行的):
啟動程式後:
按下Next按鈕後:
實驗主要部分程式碼及註釋(附件有工程code下載):
HelloworldActivity.java:
package com.example.helloworld; import android.app.Activity; import android.content.Intent; import android.view.View;//注意view的大小寫 import android.view.View.OnClickListener; import android.os.Bundle; import android.widget.Button; public class HelloworldActivity extends Activity { private Button my_button = null; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_helloworld); my_button = (Button)findViewById(R.id.my_button); my_button.setText( "Next" ); my_button.setOnClickListener(new MyButtonListener()); } class MyButtonListener implements OnClickListener{ public void onClick(View v) { // TODO Auto-generated method stub Intent intent = new Intent(); intent.setClass(HelloworldActivity.this, NextActivity.class); HelloworldActivity.this.startActivity(intent); } } /** * 如果下面的語句不要,那麼系統執行的時候會直接進入本程式中,而不是先進入主選單 * 再進入選擇應用程式介面進入本程式 * 為了方便除錯,這裡就不進入主選單介面了*/ /*@Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.activity_helloworld, menu); return true; }*/ }
NextActivity.java:
package com.example.helloworld; import android.app.Activity; import android.os.Bundle; import android.widget.Button; public class NextActivity extends Activity{ private Button my_button2 = null; @Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); setContentView(R.layout.activity_next); my_button2 = (Button)findViewById(R.id.my_button2); // my_button2.setText("@string/close"); //setText裡面不能採用資源引用 //資源引用顯示文字應該是在xml中的 my_button2.setText("Close"); } }
activity_helloworld.xml:
<!-- android:text="@string/wuwei" --> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_alignParentRight="false" android:layout_alignParentTop="true" android:layout_centerHorizontal="true" android:text="@string/wuwei" tools:context=".HelloworldActivity" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/my_button" android:layout_centerHorizontal="true" android:layout_centerVertical="true" /> </RelativeLayout>
activity_next.xml:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <Button android:id="@+id/my_button2" android:layout_width="fill_parent" android:layout_height="wrap_content" /> </LinearLayout>
AndroidManifest.xml:
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.helloworld" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="15" /> <application android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name=".HelloworldActivity" android:label="@string/hello_world" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".NextActivity" android:label="@string/close"> </activity> </application> </manifest>