首先我要写的是我刚刚开始使用android进行冒险,我正在构建简单的菜单,就我所知和退出按钮工作:),我尝试过启动按钮但它没有听一听,如果您有任何建议,我会非常高兴:)
主要活动:
public class MainActivity extends Activity implements OnClickListener
{
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
View startButton = findViewById(R.id.start_button);
startButton.setOnClickListener(this);
View whereButton = findViewById(R.id.where_button);
whereButton.setOnClickListener(this);
View aboutButton = findViewById(R.id.about_button);
aboutButton.setOnClickListener(this);
View exitButton = findViewById(R.id.exit_button);
exitButton.setOnClickListener(this);
}
public void onClick(View v) {
switch (v.getId()) {
case R.id.about_button:
Intent i = new Intent(this, About.class);
startActivity(i);
break;
case R.id.exit_button:
finish();
break;
case R.id.start_button:
i = new Intent(this, Start.class);
startActivity(i);
break;
}
}
的strings.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">City Inspector</string>
<string name="main_title">Ldz Inspector</string>
<string name="start_title">Profile</string>
<string name="start_label">START</string>
<string name="where_label">WHERE AM I?</string>
<string name="option_label">OPTIONS</string>
<string name="about_label">ABOUT</string>
<string name="create_label">CREATE PROFILE</string>
<string name="browse_label">BROWSE MAP</string>
<string name="exit_label">EXIT</string>
<string name="about_text">\
about program things
</string>
</resources>
start.java
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.start);
}
}
start.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@color/background"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:padding="20dip"
android:orientation="horizontal" >
<LinearLayout
android:orientation="vertical"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_gravity="center" >
<TextView
android:text="@string/start_title"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="25dip"
android:textSize="24.5sp" />
<Button
android:id="@+id/Create_Profile"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/create_label" />
<Button
android:id="@+id/Browse_Map"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/browse_label" />
</LinearLayout>
</LinearLayout>
!!编辑:
抱歉,我知道我忘记发帖了:),这里是AndroidManifest:)
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="menu.dot"
android:versionCode="1"
android:versionName="1.0">
<application android:label="@string/app_name" android:icon="@drawable/icon">
<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=".About">
android:label="@string/about_title"
android:theme="@android:style/Theme.Dialog" >
</activity>
<activity android:name=".Exit">
andorid:label="@string/exit_title">
</activity>
<activity android:name=".Start">
andorid:label="@string/start_title">
</activity>
/application>
</manifest>
请检查start.xml版本
main.xml中
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@color/background"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:padding="20dip"
android:orientation="horizontal" >
<LinearLayout
android:orientation="vertical"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_gravity="center" >
<TextView
android:text="@string/main_title"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="25dip"
android:textSize="24.5sp" />
<Button
android:id="@+id/start_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/start_label" />
<Button
android:id="@+id/where_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/where_label" />
<Button
android:id="@+id/option_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/option_label" />
<Button
android:id="@+id/about_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/about_label" />
<Button
android:id="@+id/exit_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/exit_label" />
</LinearLayout>
</LinearLayout>
答案 0 :(得分:0)
您是否在AndroidManifest.xml中注册了“开始”活动? 如果您未在AndroidManifest.xml中注册活动,则无法运行该活动。
答案 1 :(得分:0)
你可以发布你的main.xml吗?我尝试了你的代码,假设你的main.xml看起来像什么,并且启动活动工作正常(即显示开始布局)。
答案 2 :(得分:0)
在Android中,您无需实现onClickListener
并检查单击了哪个按钮。 Android为您提供了一种简洁的方法来指定用于处理onClick事件的方法,只需在XML-Layout文件中使用onClick
-attribute按钮即可。
考虑以下布局:
<Button android:id="@+id/some_button"
android:onClick="someButtonsAction"
android:layout_width="fill_parent"
android:layout_height="match_content"
/>
显示此按钮的活动现在需要有这样的方法:
public void someButtonsAction(View v){
// Do your onClick stuff here
}
提供的View v
- 参数是单击的视图本身。如果是页面,整个内容也会在顶部显示in the docs。
这使您有机会使代码更具可读性,并且您不需要从布局中获取所有按钮,添加onClickListener并确定单击了哪个按钮(在侦听器中)。
答案 3 :(得分:0)
mainActivity.java
public class MainActivity extends Activity implements OnClickListener
{
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
View startButton = findViewById(R.id.start_button);
startButton.setOnClickListener(this);
View whereButton = findViewById(R.id.where_button);
whereButton.setOnClickListener(this);
View aboutButton = findViewById(R.id.about_button);
aboutButton.setOnClickListener(this);
View exitButton = findViewById(R.id.exit_button);
exitButton.setOnClickListener(this);
}
public void onClick(View v) {
switch (v.getId()) {
case R.id.about_button:
Intent i = new Intent(this, About.class);
startActivity(i);
break;
case R.id.exit_button:
finish();
break;
}
}
public void StartCl(View v){
Intent idd = new Intent(this,Start.class);
startActivity(idd);
}
}
main.xml中
<Button
android:id="@+id/start_button"
android:onClick="StartCl"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/start_label" />