2

2 つのアクティビティ レイアウトがあり、Android で 2 つのレイアウトの間に swipeView を実装したいと考えています。

前もって感謝します。

package com.example.finalproject;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;

public class FinalProjectActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_final_project);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.activity_final_project, menu);
        return true;
    }

}
4

0 に答える 0