我一直关注youtube上的mybringback教程,我尝试实现我学到的东西。试图在我的主页上打开一个按钮来打开另一个页面。最后让程序运行没有错误但现在当我按下按钮时没有任何打开。
我的按钮
的主.xml文件<Button
android:id="@+id/btnChpt3"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:text="Appearance and Grooming Policies"
android:textSize="18sp"
android:textStyle="bold|italic"
android:gravity="center"
/>
我试图访问的.xml文件的名称是chapter3.xml
Menu.java
package com.th3ramr0d.learnar670_1;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class Menu extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button chapterThree = (Button) findViewById(R.id.btnChpt3);
chapterThree.setOnClickListener(new View.OnClickListener() {
// @Override
public void onClick(View v) {
// TODO Auto-generated method stub
startActivity(new Intent("com.th3ramr0d.learnar670_1.CHAPTER3"));
}
});
}
@Override
protected void onPause() {
// TODO Auto-generated method stub
super.onPause();
}
}
我的清单。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.th3ramr0d.learnar670_1"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="21" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
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=".Menu"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.th3ramr0d.learnar670_1.MENU" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".Chapter3"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.th3ramr0d.learnar670_1.CHAPTER3" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>
所以按钮ided为btnChpt3不会打开名为chapter3.xml的.xml文件。谢谢你的帮助。
这是我的Chapter3.java
package com.th3ramr0d.learnar670_1;
import android.app.Activity;
import android.os.Bundle;
public class Chapter3 extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.chapter3);
}
}
这是我的MainActivity.java
package com.th3ramr0d.learnar670_1;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
答案 0 :(得分:1)
实际上,您可以尝试更方便的方式在应用程序中启动活动:
startActivity(new Intent(Menu.this, Chapter3.class))
另外,您可以在此处阅读更多信息: http://developer.android.com/training/basics/firstapp/starting-activity.html
答案 1 :(得分:1)
复制此内容并粘贴到AndroidManifest
并尝试
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.th3ramr0d.learnar670_1"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="21" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".Menu"
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=".Chapter3"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.th3ramr0d.learnar670_1.CHAPTER3" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>
为了帮助您了解问题,
<category android:name="android.intent.category.LAUNCHER" />
AndroidManifest
中的上述代码定义了按下App图标时要激活的活动。根据您之前的清单,它会启动活动MainActivity
,默认情况下会将其设置为setContentView(R.layout.activity_main);
,因为IDE会创建Hello World
程序。
因此,当您启动应用时,其MainActivity
(看起来与您设计的布局相同)正在加载,而不是您要加载的Menu
活动。因此,在我们声明Menu
活动作为启动器的清单中进行少量更改现在启动Menu
活动,其中包含处理按钮点击的代码段。
我希望这有帮助!
答案 2 :(得分:0)
美好的一天。
尝试替换该行:
startActivity(new Intent("com.th3ramr0d.learnar670_1.CHAPTER3"));
使用以下代码:
Intent intent = new Intent(Menu.this, Chapter3.class);
startActivity(intent);
尝试将代码恢复为原始代码,复制布局activity_main.xml并将其重命名为menu.xml。
现在在layout menu.xml中改变这一行:
android:text="Appearance and Grooming Policies"
为:
android:text =&#34;转到菜单&#34;
和行:
android:id="@+id/btnChpt3"
with:
android:id="@+id/btnMenu"
并替换该行:
setContentView(R.layout.activity_main);
在Menu.java中的:
的setContentView(R.layout.menu.xml);
最后在MainActivity.java中将以下内容添加到oncreate方法中:
按钮btnGoToMenu =(按钮)findViewById(R.id.btnMenu);
btnGoToMenu.setOnClickListener(new View.OnClickListener(){
// @Override
public void onClick(View v) {
Intent intent = new Intent(MainActivity.this, Menu.class);
startActivity(intent);
}
});
并重新运行该应用程序。