标签:fileexplorer android应用 android 文件管理器 micodefileexplorer
AndroidManifest.xml是Android应用程序最重要的配置文件。<application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@android:style/Theme.Holo.Light" android:uiOptions="splitActionBarWhenNarrow"> <activity android:name="net.micode.fileexplorer.FileExplorerTabActivity" android:configChanges="screenSize|keyboardHidden" android:screenOrientation="sensor" android:uiOptions="splitActionBarWhenNarrow"> <intent-filter > <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application>
<activity android:name=".SearchActivity" > </activity> <activity android:label="@string/menu_setting" android:launchMode="singleTop" android:name=".FileExplorerPreferenceActivity" android:theme="@android:style/Theme.Holo.Light.NoActionBar" > </activity> <service android:name=".FTPServerService" />
mTabsAdapter = new TabsAdapter(this, mViewPager); mTabsAdapter.addTab(bar.newTab().setText(R.string.tab_category), FileCategoryActivity.class, null); mTabsAdapter.addTab(bar.newTab().setText(R.string.tab_sd), FileViewActivity.class, null); mTabsAdapter.addTab(bar.newTab().setText(R.string.tab_remote), ServerControlActivity.class, null); bar.setSelectedNavigationItem(PreferenceManager .getDefaultSharedPreferences(this).getInt(INSTANCESTATE_TAB, Util.CATEGORY_TAB_INDEX));
版权声明:本文为博主原创文章,未经博主允许不得转载。
小米开源文件管理器MiCodeFileExplorer-源码研究(9)-入口分析
标签:fileexplorer android应用 android 文件管理器 micodefileexplorer
原文地址:http://blog.csdn.net/fansunion/article/details/49530529