Android Studio:"我的第一个应用程序"不起作用

时间:2015-05-06 18:06:26

标签: java android xml

我对Android开发肯定不熟悉。

我跟随本教程:https://developer.android.com/training/basics/firstapp/running-app.html,似乎我无法在AVD上运行该应用,因为我没有看到应用程序启动器图标,也没有看到&# 34; Hello world"文本。它不会显示在“应用程序”菜单中,也不显示在“管理我的应用程序”中。窗口。

我正在使用armeabi-v7a ABI为API级别为22(Android 5.1.1)的3.2 QVGA手机运行模拟器。

这是我得到的代码:

的AndroidManifest.xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.gregory.myfirstapp" >

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MyActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

MyActivity.java:

package com.example.gregory.myfirstapp;

import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;


public class MyActivity extends ActionBarActivity {

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

    @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_my, 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);
    }
}

activity_my.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=".MyActivity">

    <TextView android:text="@string/hello_world" 
    android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</RelativeLayout>

menu_my.xml:

<menu xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools" 
    tools:context=".MyActivity">

    <item android:id="@+id/action_settings" 
    android:title="@string/action_settings"
        android:orderInCategory="100" app:showAsAction="never" />
</menu>

请帮帮我吧!

1 个答案:

答案 0 :(得分:0)

我的Android Studio遇到了同样的问题。我已经在Debug-Mode(播放按钮旁边的绿色bug)中启动了应用程序。有时模拟器非常慢,因此您必须在解锁虚拟电话后等待5到50秒。通常应用程序应该在屏幕上打开,在第一次运行后,应用程序应该出现在应用程序菜单中。