大家好,又见面了,我是你们的朋友全栈君。
首先看程序的入口:
在AndroidManifest.xml文件中, 可以看到LinhoneLauncherActivity.java是整个app的入口类
</pre><pre name="code" class="html"><application android:label="@string/app_name" android:icon="@drawable/logo_linphone_57x57" android:largeHeap="true" android:allowBackup="true">
<activity android:name="org.linphone.LinphoneLauncherActivity"
android:label="@string/app_name"
android:windowSoftInputMode="adjustPan|stateHidden"
android:theme="@style/NoTitle">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/140972.html原文链接:https://javaforall.net