--> 简单的 页面跳转 和 点击事件 的实现... 

--> AndroidManifest.xml

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
 3     package="com.dragon.android.fight"
 4     android:versionCode="1"
 5     android:versionName="1.0" >
 6 
 7     <uses-sdk
 8         android:minSdkVersion="15"
 9         android:targetSdkVersion="19" />
10 
11     <application
12         android:allowBackup="true"
13         android:icon="@drawable/ic_launcher"
14         android:label="@string/app_name"
15         android:theme="@style/AppTheme" >
16         <activity
17             android:name="com.dragon.android.fight.MainActivity"
18             android:label="@string/app_name" >
19             <intent-filter>
20                 <action android:name="android.intent.action.MAIN" />
21 
22                 <category android:name="android.intent.category.LAUNCHER" />
23             </intent-filter>
24         </activity>
25         <activity 
26             android:name="com.dragon.android.fight.OtherActivity">
27         </activity>
28     </application>
29 
30 </manifest>
AndroidManifest

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-03
  • 2021-05-22
  • 2022-12-23
  • 2021-10-29
  • 2022-12-23
  • 2021-08-29
猜你喜欢
  • 2021-05-09
  • 2022-12-23
  • 2019-02-27
  • 2021-12-02
  • 2021-11-14
  • 2021-11-30
  • 2021-11-07
相关资源
相似解决方案