andriod學習——啟動第二個activity
阿新 • • 發佈:2019-02-14
1、 一個十分簡單的android app,第一個活動頁面為一輸入框與一個傳送按鈕 ,輸入資訊點擊發送按鈕將開啟第二個介面,且顯示剛才輸入的內容。(工具:android studio 2.3 )
2、效果圖(為了截圖用了虛擬機發現真是比真機卡太多了):
hhhh~是不是超級簡單呢。
3、activity與 layout全部檔案如下圖:
4、程式碼
(1)、layout1檔案
<?xml version="1.0" encoding="utf-8"?> <android.support.constraint.ConstraintLayout(2)、layout2檔案xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.example.xx.http_app.activity1"> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal" tools:layout_editor_absoluteY="-2dp"> <EditText android:id="@+id/msg" android:layout_width="400px" android:layout_height="wrap_content" /> <Button android:id="@+id/bt" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="傳送 " /> </LinearLayout> </android.support.constraint.ConstraintLayout>
<?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"> <TextView android:id="@+id/tv2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:text="TextView" /> </LinearLayout>
(3)、activity1檔案
捕獲EditText輸入的內容並賦值給公共常量;
建立第二個activity:Intent intent = new Intent(當前activity.this,要啟動的另一個activity.class);
starActivity(intent)啟動第二個activity;
Intent intent = new Intent(activity1.this,activity2.class);
public class activity1 extends Activity { public final static String EXTRA_MESSAGE = "com.example.bao.http_app.MESSAGE";//定義一個公共常量 private Button bt; EditText msg=null; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.layout_1); bt=(Button)findViewById(R.id.bt); msg=(EditText)findViewById(R.id.msg); msg.setText("這是第一個"); bt.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent(activity1.this,activity2.class); EditText editText = (EditText) findViewById(R.id.msg); String message = editText.getText().toString(); intent.putExtra(EXTRA_MESSAGE, message); startActivity(intent); } }); } }(4)、activity2檔案
public class activity2 extends Activity { private TextView tv2; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.layout_2); tv2=(TextView)findViewById(R.id.tv2); Intent intent = getIntent(); String message = intent.getStringExtra(activity1.EXTRA_MESSAGE); // Get the message from the intent tv2.setText(message); } }
額。記得在AndroidManifest.xml中新增activity2
。
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.bao.http_app"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".activity1"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".activity2" /> <!-- 加入第二個activity --></application> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> </manifest>
以上就是這個程式全部的程式碼了
end