I have one simple solution: using that, you can set the default press effect to the button. // Create button and add event Button addImageView = (Button) bottomView.findViewById(R.id. addImage ); addImageView.setOnClickListener( new OnClickListener () { @Override public void onClick(View v) { // click event } }); //Using this code set touch listener addImageView.setOnTouchListener( touchEffect ); //touch listner OnTouchListener touchEffect = new OnTouchListener() { public boolean onTouch(View v, MotionEvent event) { switch (event.getAction()) { case MotionEvent. ACTION_DOWN : { v.getBackground().setColorFilter(0xe0f47521,PorterDuff.Mode. SRC_ATOP ); v....
Convert file path to Uri File externalFile = new File ( Environment.getExternalStorageDirectory () , "image.png" ) ; Uri external = Uri.fromFile ( externalFile ) ; Uri to file convert. File f = new File(uri.toString());
Comments
Post a Comment