Start recording for Whatsapp
com.whatsapp.action.WHATSAPP_RECORDING
Start recording for Whatsapp
Use
public void startStartRecordingForWhatsapp() {
Intent intent = new Intent("com.whatsapp.action.WHATSAPP_RECORDING");
if (intent.resolveActivity(getPackageManager()) != null) {
startActivity(intent);
}
}Example intent filter
<activity ...>
<intent-filter>
<action android:name="com.whatsapp.action.WHATSAPP_RECORDING" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
Apps Providing an Implementation
Search on Google Play, AppBrain, Amazon App store or similar (not yet available - please make this happen!)