android組件通訊 Intent-ComponnentName屬性

來源:互聯網
上載者:User

ComponnentName屬性應用執行個體

/Chapter06_Intent_ComponentName/src/com/amaker/ch06/app/MainActivity.java

代碼

package com.amaker.ch06.app;

import android.app.Activity;
import android.content.ComponentName;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

/**
* 測試Intent的ComponentName屬性
*/
public class MainActivity extends Activity {
private Button btn;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// 設定視圖布局
setContentView(R.layout.main);
// 執行個體化Button
btn = (Button)findViewById(R.id.myButton01);
// 添加單擊監聽器
btn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// 執行個體化組件名稱
ComponentName cn = new ComponentName(MainActivity.this, "com.amaker.ch06.app1.MyActivity");
// 執行個體化Intent
Intent intent = new Intent();
// 為Intent設定組件名稱屬性
intent.setComponent(cn);
// 啟動Activity
startActivity(intent);
}
});
}
}

/Chapter06_Intent_ComponentName/src/com/amaker/ch06/app1/MyActivity.java

代碼

package com.amaker.ch06.app1;

import android.app.Activity;
import android.content.ComponentName;
import android.content.Intent;
import android.os.Bundle;
import android.widget.TextView;

import com.amaker.ch06.app.R;

/**
* 測試Intent的ComponentName屬性
*/
public class MyActivity extends Activity {
// 聲明TextView
private TextView tv;
@Override
public void onCreate(Bundle savedInstanceState) {
// 設定視圖布局
super.onCreate(savedInstanceState);
setContentView(R.layout.my_layout);
// 獲得Intent
Intent intent = this.getIntent();
// 獲得組件名稱對象
ComponentName cn = intent.getComponent();
// 獲得包名稱
String packageName = cn.getPackageName();
// 獲得類名稱
String className = cn.getClassName();
// 執行個體化TextView
tv = (TextView)findViewById(R.id.TextView01);
// 顯示
tv.setText("組件包名稱:"+packageName+"\n"+"組件類名稱:"+className);
}
}

/Chapter06_Intent_ComponentName/res/layout/main.xml

代碼

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button
android:text="測試Intent的組件名稱屬性"
android:id="@+id/myButton01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"></Button>
</LinearLayout>

/Chapter06_Intent_ComponentName/res/layout/my_layout.xml

代碼

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>

<TextView
android:text="@+id/TextView01"
android:id="@+id/TextView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"></TextView>

</LinearLayout>

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.