1. 程式人生 > >Linphone-Android原始碼學習(一)

Linphone-Android原始碼學習(一)

首先看程式的入口:
在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>