簡體   English   中英

在eclipse上的Android上安裝應用,但未顯示在應用抽屜中

[英]Installing app on Android made in eclipse, not showing up in app drawer

我安裝它通過Dropbox的,而不是通過自己的手機或模擬器中運行,其調試精細,它安裝罰款(我花了一點得到它安裝,但安裝,但沒有給我選擇打開)

我簽署了所有內容以進行安裝。 我在三星Galaxy兆豐了Android 4.2.2運行它。

到目前為止,這就是我所擁有的。 這是非常基本的。 我只是想獲得它在我的手機上運行,​​所以我可以走得更遠測試,我去。 任何建議表示歡迎,我非常新的Android的東西,所以請不要笑得太辛苦了!

Android清單

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
    </application>

    </manifest>

活動主體

    <RadioButton
        android:id="@+id/vdep"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="121dp"
        android:text="Very Depressed" />

    <RadioButton
        android:id="@+id/moddep"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/vdep"
        android:layout_below="@+id/vdep"
        android:text="Moderately Depressed" />

    <RadioButton
        android:id="@+id/milddep"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/moddep"
        android:layout_below="@+id/moddep"
        android:text="Mildly Depressed" />

    <RadioButton
        android:id="@+id/stable"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/milddep"
        android:layout_below="@+id/milddep"
        android:text="Stable" />

    <RadioButton
        android:id="@+id/radioButton5"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/stable"
        android:layout_below="@+id/stable"
        android:text="Mildly Manic" />

    <RadioButton
        android:id="@+id/radioButton6"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/radioButton5"
        android:layout_below="@+id/radioButton5"
        android:text="Moderately Manic" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/radioButton7"
        android:layout_alignRight="@+id/vdep"
        android:layout_below="@+id/radioButton7"
        android:layout_marginTop="32dp"
        android:text="View Charts" />

    <RadioButton
        android:id="@+id/radioButton7"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/radioButton6"
        android:layout_below="@+id/radioButton6"
        android:text="Very Manic" />

</RelativeLayout>

任何和所有建議都歡迎。 我正在Windows 8上運行它,但我也將它安裝在Linux,Ubuntu上,如果這樣可以使我的生活更輕松,請告訴我。 謝謝很多人。 我總是在這里得到答案,而它們總是很好的答案。 (這就是為什么我來了!)問我任何問題,如果需要,我會盡力迅速回答。

對於TL,博士,我上面的代碼,我可以安裝在手機上,但它不會打開,並且圖標不會在我的手機的應用部分顯示,但它顯示了在應用程序管理器。 我的手機處於調試模式。

您的清單中也沒有任何活動。 您是否從某個地方復制了layout.XML? 嘗試將它手動添加到您的項目中,然后復制內容。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM