Showing posts with label Menambahkan 'Category' ke Intent Filter. Show all posts
Showing posts with label Menambahkan 'Category' ke Intent Filter. Show all posts

Menambahkan 'Category' ke Intent Filter

Kita bisa mengelompokkan beberapa activity kita menjadi beberapa category dengan menggunakan elemen <category> di dalam intent filter. Misalkan kita sudah menambahkan elemen <category> seperti berikut di dalam file "AndroidManifest.xml":
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.intents">

<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.INTERNET" />

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />