0

我使用 ADT Bundle。我的项目中有 4 项活动。activity_main 是主要活动,是在创建项目时创建的。在我使用 File -> New -> Other 创建了其他活动之后。在这个向导中,我有 chechbox “Launcher Activity”。我选择了它。在我了解此复选框在设备的主菜单中显示您的活动之后。我怎样才能取消选择这个?

`

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:layout_marginLeft="16dp"
    android:layout_marginTop="14dp"
    android:text="Bu oyun adamlarda hasaplamalary gechirmani owretmek uchin duzulendir!!!"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_below="@+id/textView1"
    android:layout_marginRight="22dp"
    android:layout_marginTop="21dp"
    android:text="Habarlashmak uchin: +99365814342" />

`

4

1 回答 1

0

打开您的 AndroidManifest.xml,转到 XML 视图,然后intent-filter从启动器中不需要的活动中删除以下内容:

<intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
于 2013-01-20T14:46:26.023 回答