Guest User

Android Sliding Menu using Navigation Drawer

a guest
Dec 30th, 2016
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.15 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3.    package="info.androidhive.navigationdrawer">
  4.  
  5.     <uses-permission android:name="android.permission.INTERNET" />
  6.  
  7.     <application
  8.        android:allowBackup="true"
  9.        android:icon="@mipmap/ic_launcher"
  10.        android:label="@string/app_name"
  11.        android:supportsRtl="true"
  12.        android:theme="@style/AppTheme">
  13.         <activity
  14.            android:name=".activity.MainActivity"
  15.            android:label="@string/app_name"
  16.            android:theme="@style/AppTheme.NoActionBar">
  17.             <intent-filter>
  18.                 <action android:name="android.intent.action.MAIN" />
  19.  
  20.                 <category android:name="android.intent.category.LAUNCHER" />
  21.             </intent-filter>
  22.         </activity>
  23.         <activity
  24.            android:name=".activity.AboutUsActivity"
  25.            android:label="@string/activity_title_about_us" />
  26.         <activity
  27.            android:name=".activity.PrivacyPolicyActivity"
  28.            android:label="@string/activity_title_privacy_policy" />
  29.     </application>
  30.  
  31. </manifest>
Add Comment
Please, Sign In to add comment