2012年2月20日月曜日

インテントの使用


インテントの使用例です。

下記はTestIntentActivity.javaです。


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

public class TestIntentActivity extends Activity implements OnClickListener {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
     
        LinearLayout linearLayout = new LinearLayout(this);
     
        TextView textView = new TextView(this);
        textView.setText("トップアクティビティ");
     
        Button button = new Button(this);
        button.setWidth(200);
        button.setHeight(200);
        button.setText("2つ目のアクティビティへ");
        button.setOnClickListener(this);
     
        linearLayout.addView(textView);
        linearLayout.addView(button);
        setContentView(linearLayout);
    }

@Override
public void onClick(View v) {
Intent intent = new Intent(this, Activity01.class);
startActivity(intent);
}
}



下記はActivity01.javaです。



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

public class Activity01 extends Activity implements OnClickListener{

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

LinearLayout linearLayout = new LinearLayout(this);
        
        TextView textView = new TextView(this);
        textView.setText("2つ目のアクティビティ");
        
        Button button = new Button(this);
        button.setWidth(200);
        button.setHeight(200);
        button.setText("トップアクティビティへ");
        button.setOnClickListener(this);
        
        linearLayout.addView(textView);
        linearLayout.addView(button);
        setContentView(linearLayout);
}

@Override
public void onClick(View v) {
Intent intent = new Intent(this, TestIntentActivity.class);
startActivity(intent);
}
}


下記はAndroidManifest.xmlです。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.sample.intent"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="7" />

    <application
        android:icon="@drawable/icon"
        android:label="@string/app_name" >
        <activity
            android:label="@string/app_name"
            android:name=".TestIntentActivity"
android:launchMode="singleInstance">


            <intent-filter >
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
           </intent-filter>
        </activity>
        
        <activity android:name="Activity01"  android:launchMode="singleInstance"> </activity>


            
    </application>

</manifest>


0 件のコメント:

コメントを投稿