2013-01-20 63 views
0

我使用ADT Bundle。我在我的項目中有4項活動。 activity_main是主要活動,並且是在創建項目時創建的。在我用File - > New - > Other創建其他活動之後。在這個嚮導中我有chechbox「Lauuncher 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" /> 

`

回答

0

打開你的AndroidManifest.xml中,轉到XML視圖,然後從活動中的下列intent-filter你不想在啓動:

<intent-filter> 
    <action android:name="android.intent.action.MAIN" /> 
    <category android:name="android.intent.category.LAUNCHER" /> 
</intent-filter> 
相關問題