BadgedImageview allow you show a badge into a Imageview.
BadgedImageview allow you show a badge into a Imageview. I just extracted the widgets from Plaid app developed by Nick Butcher(https://github.com/nickbutcher) and add some adjustments, all credits for Nick.
Gradle via jitpack
repositories { // ... maven { url "https://jitpack.io" } }
dependencies { compile 'com.github.yesidlazaro:BadgedImageview:1.0.2' }
public class MainActivity extends AppCompatActivity implements View.OnClickListener { BadgedFourThreeImageView badgedImageViewDog; BadgedSquareImageView badgedImageViewPersonVideo; BadgedSquareImageView badgedImageViewPersonGif;@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); badgedImageViewDog = (BadgedFourThreeImageView) findViewById(R.id.badge_dog); badgedImageViewPersonVideo = (BadgedSquareImageView) findViewById(R.id.badge_person_video); badgedImageViewPersonGif = (BadgedSquareImageView) findViewById(R.id.badge_person_gif); badgedImageViewDog.showBadge(true); badgedImageViewPersonVideo.showBadge(true); badgedImageViewPersonGif.showBadge(true); badgedImageViewPersonGif.setBadgeText("JPG"); badgedImageViewPersonGif.setBadgeColor(getResources().getColor(R.color.gray_50)); badgedImageViewPersonGif.setOnClickListener(this); } @Override public void onClick(View v) { if (badgedImageViewPersonGif.isBadgeVisible()) { badgedImageViewPersonGif.showBadge(false); } else { badgedImageViewPersonGif.showBadge(true); } }
}
<com.creativityapps.badgedimageviews.badgedsquareimageview android:id="@+id/badge_person_video" android:layout_width="200dp" android:layout_height="200dp" android:layout_margintop="@dimen/padding_normal" android:src="@drawable/me" app:badgecolor="@color/colorAccent" app:badgegravity="top|right" app:badgepadding="@dimen/padding_normal" app:badgetext="@string/lab_video"></com.creativityapps.badgedimageviews.badgedsquareimageview> <com.creativityapps.badgedimageviews.badgedsquareimageview android:id="@+id/badge_person_gif" android:layout_width="200dp" android:layout_height="200dp" android:layout_margintop="@dimen/padding_normal" android:src="@drawable/me" android:foreground="?selectableItemBackground" app:badgegravity="top|left" app:badgepadding="@dimen/padding_normal" app:badgetext="@string/lab_gif"></com.creativityapps.badgedimageviews.badgedsquareimageview>
Copyright 2015 Yesid Lazaro
Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you 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.