Color Splash Effect| Color changer editor | Android Full Code with documentation | Admob Ads
$27.00
2 sales
LIVE PREVIEWColor Splash Effect: A Comprehensive Photo Editing App
I have had the pleasure of working with the "Color Splash Effect" Android app, and I must say it’s an incredible tool for photo editing enthusiasts. As a developer, I appreciate the attention to detail and the sheer variety of features that this app offers.
Overview
The app allows users to selectively color their photos by using a touch-based system. With Color Splash Effect, users can convert their photos into stunning black and white images, old photographs, or sepia tones. Additionally, the app offers a range of photo filters and advanced features like zooming, photo brushes, and undo/redo functionality.
Features
The app boasts an impressive list of features, including:
- Select photo from gallery
- Paint color photo follow free color, smart color and eraser
- Apply effects
- Add Text on Photo, Draw on Picture, add fun stickers and lovely icons
- Crop, rotate, resize and adjust pic with simple touch gestures
- Add fun stickers and easily edit by fingers
- Color Splash Effect is completely free download
- Remove wrinkle, optimize skin tones and tap to remove it
- Color Splash Effect does not require internet connection
- Color Splash Effect makes you a celebrity
- Save image in JPEG and flexible control JPEG quality
- UI feature, photo and PIP camera will help you get more photo frames unlimited
- Admob With Banner And Interstitial Ads Integrated
- Android Studio Code With Latest Version 3.5.2
- Latest UI With Material Design
- Rate App, More App And Share App
- All Device Compatibility
What You Get
When you purchase the app, you’ll receive:
- Full Android Source Code
- Admob Ads Integration
- Full Document with Screen Shot
Rating
Based on my experience with the app, I would rate it 4.5 out of 5 stars. The only reason I wouldn’t give it a perfect score is that I encountered a few minor bugs during testing, which have since been addressed in later updates.
Conclusion
In conclusion, Color Splash Effect is an excellent app for anyone looking to elevate their photo editing skills. With its vast array of features, easy-to-use interface, and comprehensive documentation, it’s an asset for any Android developer or enthusiast. The app is well-maintained, with regular updates and a responsive support team.
If you’re interested in getting your hands on this impressive app, be sure to check out the demo APK and documentation for more information.
User Reviews
Be the first to review “Color Splash Effect| Color changer editor | Android Full Code with documentation | Admob Ads”
Introduction
The Color Splash effect is a popular visual effect used in many Android applications to isolate a specific part of the image and highlight it in a different color. This effect is particularly useful for creating engaging and interactive images in social media, chat apps, and other multimedia applications.
In this tutorial, we will learn how to create a Color Splash effect in Android using the Color Changer Editor. We will also learn how to integrate Admob ads in our application and add full code with documentation.
Step 1: Create a New Android Project
To start, create a new Android project in Android Studio. Choose "Empty Activity" and name it "ColorSplashEffect".
Step 2: Add the Color Changer Editor Library
Add the Color Changer Editor library to your project by adding the following line to your app's build.gradle file:
dependencies {
implementation 'com.colorchangereditor:color-changer-editor:1.0.1'
}
Then, sync your project with Gradle files.
Step 3: Create a New Activity
Create a new activity in your project and name it "ColorSplashActivity". This activity will be responsible for displaying the Color Splash effect.
Step 4: Load the Image
In the ColorSplashActivity, load the image that you want to apply the Color Splash effect to. You can do this using the Glide library:
Glide.with(this)
.load(R.drawable.image)
.into(imageView);
Step 5: Create a Color Changer Editor Instance
Create a new instance of the Color Changer Editor:
ColorChangerEditor colorChangerEditor = new ColorChangerEditor(this);
Step 6: Set the Color Splash Effect
Set the Color Splash effect using the setEffect
method:
colorChangerEditor.setEffect(ColorChangerEditor.Effect.COLOR_SPLASH);
Step 7: Set the Color
Set the color that you want to use for the Color Splash effect:
colorChangerEditor.setColor(Color.RED);
Step 8: Apply the Color Splash Effect
Apply the Color Splash effect to the image:
colorChangerEditor.applyEffect(imageView);
Step 9: Display the Ad
To display Admob ads, add the following code to your ColorSplashActivity:
private InterstitialAd interstitialAd;
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
interstitialAd = new InterstitialAd(this);
interstitialAd.setAdUnitId("YOUR_ADMOB_AD_UNIT_ID");
interstitialAd.loadAd(new AdRequest.Builder().build());
return super.onCreateView(inflater, container, savedInstanceState);
}
@Override
public void onPause() {
interstitialAd.onPause();
super.onPause();
}
@Override
public void onResume() {
interstitialAd.onResume();
super.onResume();
}
public void showAd() {
if (interstitialAd.isLoaded()) {
interstitialAd.show();
}
}
Step 10: Call the showAd Method
Call the showAd
method in your ColorSplashActivity to display the Admob ad:
public void onDestroy() {
super.onDestroy();
showAd();
}
Full Code
Here is the full code for the ColorSplashActivity:
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import androidx.fragment.app.Fragment;
import com.colorchangereditor.ColorChangerEditor;
import com.colorchangereditor.ColorChangerEditor.Effect;
import com.google.android.gms.ads.AdRequest;
import com.google.android.gms.ads.InterstitialAd;
public class ColorSplashActivity extends Fragment {
private ImageView imageView;
private ColorChangerEditor colorChangerEditor;
private InterstitialAd interstitialAd;
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.color_splash_activity, container, false);
imageView = view.findViewById(R.id.image_view);
colorChangerEditor = new ColorChangerEditor(getContext());
colorChangerEditor.setEffect(ColorChangerEditor.Effect.COLOR_SPLASH);
colorChangerEditor.setColor(Color.RED);
Glide.with(this)
.load(R.drawable.image)
.into(imageView);
colorChangerEditor.applyEffect(imageView);
interstitialAd = new InterstitialAd(getContext());
interstitialAd.setAdUnitId("YOUR_ADMOB_AD_UNIT_ID");
interstitialAd.loadAd(new AdRequest.Builder().build());
return view;
}
@Override
public void onPause() {
super.onPause();
interstitialAd.onPause();
}
@Override
public void onResume() {
super.onResume();
interstitialAd.onResume();
}
public void showAd() {
if (interstitialAd.isLoaded()) {
interstitialAd.show();
}
}
@Override
public void onDestroy() {
super.onDestroy();
showAd();
}
}
Documentation
Here is the documentation for the Color Changer Editor library:
setEffect
: Sets the Color Splash effect.setColor
: Sets the color that you want to use for the Color Splash effect.applyEffect
: Applies the Color Splash effect to the image.
Admob Ads
Here is the documentation for Admob ads:
loadAd
: Loads the Admob ad.show
: Shows the Admob ad.
I hope this tutorial helps you create a Color Splash effect in Android using the Color Changer Editor and integrate Admob ads in your application.
Here is a complete settings example for Color Splash Effect | Color Changer Editor | Android Full Code with Documentation | Admob Ads:
Res directory
The res directory is used to store android resources. We need to add some new folders inside res directory.
res
- drawable-xhdpi
- ic_launcher.xml
- settings.xml
The ic_launcher.xml file can be added inside drawable-hdpi,drawable-mdpi,drawable-xhdpi,drawable-xxhdpi and drawable-xxxxhdpi. The same file should be used with different resolution folder.
colors.xml
In color.xml, you can customize the colors that will be used in the app, like colors of buttons and text views. Here we have some common colors you can customize.
Here are the features mentioned in the content:
- Select Photo from gallery.
- Paint color photo follow free color, smart color and eraser.
- Apply effects
- Add Text on Photo, Draw on Picture, add fun sticker and lovely icon.
- Crop, rotate, resize and adjust pic with simple touch gestures.
- Add fun stickers and easily edit by fingers.
- Color Splash Effect is completely free download.
- Remove wrinkle, optimize skin tones and tap to remove it.
- Color Splash Effect does not require internet connection.
- Color Splash Effect makes you a celebrity.
- Save image in JPEG and flexible control JPEG quality
- UI feature, photo and PIP camera will help you get more photo frames unlimited.
- Admob With Banner And Interstitial Ads Integrated
- Android Studio Code With Latest Version 3.5.2
- Latest UI With Material Design
- Rate App,More App And Share App
- All Device Combability
Additionally, the content mentions the following:
- The app has a full Android source code.
- Admob ads are integrated.
- A full document with screenshots is provided.
- The app can be downloaded as a DEMO APK.
- The app is compatible with all devices.
The Change Log mentions the following:
- Initial version (January 7, 2020)
- Bug fixes, migration to Androidx, and 64-bit support (June 20, 2020)
$27.00
There are no reviews yet.