我是这个领域的新手,我正在使用迷你app。 我有主要模板中的动物图像,并希望当点击例如狗图像它必须切换另一页,并将有狗描述和图库。 所以我需要知道如何创建多个页面并重定向它。 这是我的应用程序。 谢谢......
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//////////////////////// Dog
Button button3 = (Button)this.findViewById(R.id.button3);
final MediaPlayer dog = MediaPlayer.create(this, R.raw.dog);
button3.setOnClickListener(new OnClickListener(){
public void onClick(View v) {
// If the music is playing
if(dog.isPlaying() == true)
// Pause the music player
dog.pause();
// If it's not playing
else
// Resume the music player
dog.start();
}
});
答案 0 :(得分:0)
您必须为不同的页面创建不同的活动。 并使用Intent更改页面。
示例:
Intent intent = new Intent(MainActivy.this, OtherActivity.class);
startActivity(intent);