我一直在開發(黑客一起)應用程序小部件,現在工作正常。我一直打算實施關聯的應用程序,以便用戶在運行應用程序或添加窗口小部件(或兩者)之間進行選擇。到目前爲止,我已經在主Activity的onCreate()方法中添加了Toast,並在onCreate()的末尾添加了finish(),以便在Android Studio中運行我的項目時旁路了應用程序,在我的設備上,我看到的只是一個快速吐司,沒有討厭的活動視圖顯示。小部件和應用程序:掛在開始簡單活動
現在我已經準備好去應用程序了,所以我拿出了Toast並刪除了finish(),但是我發現簡單的「Hello World」TextView(它作爲佔位符放在那裏創建該項目)不再顯示,而是當我嘗試運行它時,該應用只是掛起。
我幾乎沒有線索爲什麼會發生這種情況,但懷疑它與相關的小部件有關。
我的onCreate()方法仍然是超級簡單:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_my);
}
而且activity_my觀點同樣是簡單的(仍然是股票的 「Hello World」 的例子):
<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>
任何想法,我應該從這裏走?
謝謝!我的應用程序有類似的問題,這是問題所在。 – ilikeyoyo 2015-05-07 03:47:57