Example usage for android.telecom TelecomManager createManageBlockedNumbersIntent

List of usage examples for android.telecom TelecomManager createManageBlockedNumbersIntent

Introduction

In this page you can find the example usage for android.telecom TelecomManager createManageBlockedNumbersIntent.

Prototype

public Intent createManageBlockedNumbersIntent() 

Source Link

Document

Creates the Intent which can be used with Context#startActivity(Intent) to launch the activity to manage blocked numbers.

Usage

From source file:Main.java

/**
 * Creates {@link Intent} to launch the activity to manage blocked numbers.
 *///from w w w  .  ja  v  a2  s  . c om
public static Intent createManageBlockedNumbersIntent(TelecomManager tm) {
    return tm.createManageBlockedNumbersIntent();
}