在eclipse上安装Android上的app,不会出现在app抽屉里

时间:2014-03-16 20:15:47

标签: android eclipse adt

我通过dropbox安装它,而不是通过我的手机或模拟器运行,它调试很好,它安装得很好(我花了一点时间来安装它,但它安装,但没有选择打开)< / p>

我签了它以及所有要安装的东西。我在搭载Android 4.2.2的三星Galaxy Mega上运行它。

这是我到目前为止所拥有的。这很基础。我只想让它在手机上运行,​​这样我就可以继续进行测试了。欢迎任何建议,我对Android的东西很新,所以请不要笑得太厉害!

Android Manifest         

    <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,博士,我有上面的代码,我可以在我的手机上安装,但它不会打开,图标不会显示在手机的应用部分,但它在Applications manager中显示。我的手机处于调试模式。

1 个答案:

答案 0 :(得分:0)

您的清单中也没有任何活动。你是否从某个地方复制了layout.XML?尝试将其手动添加到您的项目中,然后复制内容。