21

main.xmlファイルのボタンをクリックしたときに別のレイアウトxmlファイルを開くにはどうすればよいですか?

したがって、ボタンが表示されているmain.xmlがある場合は、ここをクリックしてクリックすると、second.xmlファイル(レイアウト)が開きます。

4

3 に答える 3

34

まず、2つのレイアウトを作成します。

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"
    android:background="#ffffff"  >

    <TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:textColor="#000000"
    android:text="This is Activity 1" />

       <Button android:text="Next"
        android:id="@+id/Button01"
        android:layout_width="250px"
            android:textSize="18px"
        android:layout_height="55px">
    </Button>    

</LinearLayout>

second.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"
    android:background="#ffffff"  >

    <TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:textColor="#000000"
    android:text="This is Activity 2" />

       <Button android:text="Previous"
        android:id="@+id/Button02"
        android:layout_width="250px"
            android:textSize="18px"
        android:layout_height="55px">
    </Button>    

</LinearLayout>

次に、アクティビティをマニフェストファイルに追加します

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.rr"
      android:versionCode="1"
      android:versionName="1.0">
    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".Activity1"
                  android:label="@string/app_name">
            <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-sdk android:minSdkVersion="3" />
</manifest>

Activity1.java

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

public class Activity1 extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        Button next = (Button) findViewById(R.id.Button01);
        next.setOnClickListener(new View.OnClickListener() {
            public void onClick(View view) {
                Intent myIntent = new Intent(view.getContext(), Activity2.class);
                startActivityForResult(myIntent, 0);
            }

        });
    }
}

Activity2に切り替えるには、次のことを行う必要があります。

  1. を使用して、レイアウト上のIDButton01のボタンへの参照を取得します (Button) findViewById(R.id.Button01)

  2. ボタンのOnClickリスナーを作成します。

  3. そして最も重要な部分は、別のアクティビティを開始するための「インテント」を作成することです。インテントには、コンテキストと開始するアクティビティの名前(Activity2.class)の2つのパラメーターが必要です。

Activity2.java

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

public class Activity2 extends Activity {

    /** Called when the activity is first created. */
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.second);

        Button next = (Button) findViewById(R.id.Button02);
        next.setOnClickListener(new View.OnClickListener() {
            public void onClick(View view) {
                Intent intent = new Intent();
                setResult(RESULT_OK, intent);
                finish();
            }

        });
    }
于 2012-06-07T16:41:32.620 に答える
5

-xmlからボタンを膨らませます-その
上に
onClickListenerを追加します-onClickイベントで新しいレイアウトを設定します

Button btn = (Button) findViewById(R.id.myButton);
btn.setOnClickListener(new OnClickListener(){

@Override
public void onClick(View v)
{
    MyActivity.setContentView(R.layout.newlayout);
}

});

このようなものが機能するはずです...

于 2012-06-07T16:39:35.100 に答える
0

Kotlinの方法:

-onClickイベントをデザイナに直接追加します。

  1. デザイナモードでアクティビティ(Activity1.xmlなど)ファイルを開きます
  2. 遷移をトリガーするボタンを選択します
  3. すべてのボタンプロパティを使用して、右側のパネルのonClickボックスに関数名を追加します

-Activity.ktファイルを開きます

  1. デザイナで定義した名前の関数を追加します

    fun openActivity2(view: View) { intent = Intent(view.context,Activity2::class.java) startActivity(intent) }

これで、ボタンのonClickイベントにリンクされた関数ができました

于 2018-12-20T10:28:52.087 に答える