Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. String mPackage = "com.android.camera";
  2. String mClass = ".CropImage";
  3. intent.setComponent(new ComponentName(mPackage,mPackage+mClass));
  4. startActivityForResult(intent, CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE);
  5.  
  6. ...
  7. ....
  8. </activity>
  9. <!-- Declare the bundled CropImage Activity -->
  10. <activity android:name="com.android.camera.CropImage"/>
  11. </application>
  12.  
  13. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement