因此,当这段代码运行时,我没有错误,它正确显示按钮和所有内容,但是当我点击按钮时没有任何反应只是点击并点击并点击下面没有任何反应我将发布XML清单代码,这样你就可以看到我已经完成了所有的事情,但不知怎的,它没有做我要求它做的正确的事情。我已经尝试过多次我多次问这个问题,每次回答的人都错了,我会用最少量的代码发布我的整个新项目,只有3个课程我想到的可能是什么我的设置有问题,因为这在我的两台计算机上都不起作用,这里是主类代码或"启动器"谢谢大家的帮助,祝你们度过愉快的一天。
package com.tripp.funnystuff;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.view.Menu;
import android.view.MenuItem;
public class Main extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getSupportActionBar().hide();
setContentView(R.layout.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.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();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
这是菜单类
package com.tripp.funnystuff;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
/**
* Created by Devin on 3/27/2015.
*/
public class Menu extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
//setting up the button references
Button jokeD = (Button) findViewById(R.id.jokeoftheday);
//Button jokeC = (Button) findViewById(R.id.jokecatagories);
jokeD.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Intent i = new Intent(Menu.this, JokeOfTheDay.class);
startActivity(i);
}
});
/*jokeC.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Intent s = new Intent(Menu.this, JokeCatagories.class);
Menu.this.startActivity(s);
}
});
*/
}
@Override
protected void onPause() {
// TODO Auto-generated method stub
super.onPause();
}
}
这是天班的笑话
package com.tripp.funnystuff;
import android.app.Activity;
import android.os.Bundle;
/**
* Created by Devin on 3/27/2015.
*/
public class JokeOfTheDay extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.jokeoftheday);
}
}
这是xml主代码
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".Main">
<Button
android:id="@+id/jokeoftheday"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:textStyle="bold"
android:text="joke of the day"/>
</RelativeLayout>
这是下面的jokeoftheday xml代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="0dp"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="Small Text"
android:id="@+id/textView"
android:layout_gravity="center_horizontal" />
</LinearLayout>
并且最后,但不仅仅是这里的清单代码
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.tripp.funnystuff" >
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".Main"
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" >
</activity>
<activity
android:name=".JokeOfTheDay"
android:label="@string/app_name" >
</activity>
</application>
</manifest>
如果您想要编辑我的英语,我想要严肃查询,然后我将取消编辑我想要帮助我的代码而不是我的英语。所以带着你的****去别的地方。我已经花了一个半星期在我的电脑上在互联网上寻找这个问题并且没有找到任何解决方案,如果有人遇到过同样的问题,请给我一些如何解决它的线索。我非常感谢所有阅读此内容的人以及所有需要时间帮助我的聪明程序员。谢谢!
答案 0 :(得分:1)
您的Main.java正在显示按钮,但没有单击侦听器。 Menu.java是不必要的,你真的应该看看开发人员的网站示例。