2016-06-11 98 views
-1

當我跑我的AVD的應用程序,它提供了錯誤:安卓:不幸的是,MyApp的已停止

Unfortunately, MyApp has stopped.

當我看到日誌的貓,它看起來像這樣:

登錄貓第一節

enter image description here

登錄貓第二部分

enter image description here

這裏是我的MainActivity文件:

package com.ghani.myapp; 

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); 
} 

}

這是我activity_main文件:

<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:paddingBottom="@dimen/activity_vertical_margin" 
android:paddingLeft="@dimen/activity_horizontal_margin" 
android:paddingRight="@dimen/activity_horizontal_margin" 
android:paddingTop="@dimen/activity_vertical_margin" 
tools:context="com.ghani.myapp.MainActivity" > 

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

+0

發佈您的代碼會拋出異常。 –

+0

也許這可以幫助你http://stackoverflow.com/a/24587320/2442831 – Lino

+0

謝謝@林諾,這個鏈接幫了我。 –

回答

-1

請勿使用API​​ Level 20和Platform 4.4W作爲Android虛擬設備。在ADV上設置Level 19和Platform 4.2.2時,所有操作都應該如此。

+0

爲什麼? API Level 20有什麼問題?你怎麼知道這是造成這個問題的原因? – Egor

+0

可用的AVD版本與通過SDK管理器安裝的系統映像綁定。 –

+0

是的,我知道,但它是如何適用於手頭的問題? – Egor

0

您針對的版本是Android Wear特定API,因此它會在手機上導致錯誤。嘗試將API更改爲21或19,並且一切都應該啓動並運行。

如果你的目標的Android Wear設備,然後嘗試改變

android:theme="@style/AppTheme" > 

android:theme="@android:style/Theme.DeviceDefault" > 
相關問題