JetradarMobile
desertplaceholder
Java

Animated placeholder in desert style.

Last updated May 12, 2026
704
Stars
66
Forks
4
Issues
0
Stars/day
Attention Score
50
Language breakdown
No language data available.
โ–ธ Files click to expand
README

DesertPlaceholder =================

Android Arsenal JitPack API AndroidWeekly AndroidDev Digest

Animated placeholder in desert style

image

Compatibility


This library is compatible from API 14 (Android 4.0).

Download


Add it in your root build.gradle at the end of repositories:

allprojects {
    repositories {
        ...
        maven { url "https://jitpack.io" }
    }
}

Add the dependency

dependencies {
    compile 'com.github.jetradarmobile.desertplaceholder:desertplaceholder:1.2.4'
}

Usage


Add view to your layout

xml
  <com.jetradar.desertplaceholder.DesertPlaceholder
      android:id="@+id/placeholder"
      android:layoutwidth="matchparent"
      android:layoutheight="matchparent"
      app:dp_butt
      app:dp_message="Use this nice placeholder if you have nothing to show"/>

Set up listener to button click

java
   DesertPlaceholder desertPlaceholder = (DesertPlaceholder) findViewById(R.id.placeholder);
    desertPlaceholder.setOnButtonClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        // do stuff
      }
    });

Testing


java
  @Rule
  public final ActivityTestRule<MainActivity> activityRule  = new ActivityTestRule<MainActivity>(MainActivity.class) {
    @Override
    protected void beforeActivityLaunched() {
      //...
      DesertPlaceholder.animationEnabled = false;
    }
  };

@Test public void placeholder() { onView(withId(R.id.placeholder)) .perform(click()) // will freeze here if animation enabled .check(matches(isDisplayed())); }

Credentials


Designed by Max Klimchuk.

License


Copyright 2016 JetRadar

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

ยฉ 2026 GitRepoTrend ยท JetradarMobile/desertplaceholder ยท Updated daily from GitHub