Я пытаюсь сделать страницу профиля для моего приложения. Вот образец, который я хочу создать.Android: изображение профиля профиля
Я хочу знать, как выровнять кружком изображение в нижней части крышки. Я смущен.
спасибо.
Я пытаюсь сделать страницу профиля для моего приложения. Вот образец, который я хочу создать.Android: изображение профиля профиля
Я хочу знать, как выровнять кружком изображение в нижней части крышки. Я смущен.
спасибо.
Вы можете easilly добавить эту библиотеку в вашем build.gradle
:
compile 'de.hdodenhof:circleimageview:1.2.1'
.
Использование
<de.hdodenhof.circleimageview.CircleImageView
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/profile_image"
android:layout_width="96dp"
android:layout_height="96dp"
android:src="@drawable/profile"
app:civ_border_width="2dp"
app:civ_border_color="#FF000000"/>
использовать этот код для круга изображения:
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<stroke android:width="1dp" android:color="#1B5E20" />
<corners android:radius="50dp"/>
<padding android:left="0dip" android:top="0dip" android:right="0dip" android:bottom="0dip" />
</shape>
и установить на фоне изображения.
<ImageView
android:background="@drawable/shape"
android:id="@+id/btnMore"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/more_apps" />
Вы можете изменить другой коэффициент по вашему требованию. в основном его использование для установки границы изображения или любого макета. но его работа, все, что вам нужно сделать, это установить радиус по вашему выбору, и он будет обрезать ваш образ. Вы можете удалить границу, если вы этого не хотите.
Это класс для кругового ImageView
без необходимости втягивания в библиотеку.
public class CircularImageView extends ImageView
{
public CircularImageView(Context context)
{
super(context);
}
public CircularImageView(Context context, AttributeSet attrs)
{
super(context, attrs);
}
public CircularImageView(Context context, AttributeSet attrs, int defStyle)
{
super(context, attrs, defStyle);
}
@Override
protected void onDraw(@NonNull Canvas canvas)
{
Drawable drawable = getDrawable();
if (drawable == null)
{
return;
}
if (getWidth() == 0 || getHeight() == 0)
{
return;
}
Bitmap b = ((BitmapDrawable) drawable).getBitmap();
Bitmap bitmap = b.copy(Bitmap.Config.ARGB_8888, true);
int w = getWidth()/*, h = getHeight()*/;
Bitmap roundBitmap = getCroppedBitmap(bitmap, w);
canvas.drawBitmap(roundBitmap, 0, 0, null);
}
private static Bitmap getCroppedBitmap(@NonNull Bitmap bmp, int radius)
{
Bitmap bitmap;
if (bmp.getWidth() != radius || bmp.getHeight() != radius)
{
float smallest = Math.min(bmp.getWidth(), bmp.getHeight());
float factor = smallest/radius;
bitmap = Bitmap.createScaledBitmap(bmp, (int) (bmp.getWidth()/factor), (int) (bmp.getHeight()/factor), false);
}
else
{
bitmap = bmp;
}
Bitmap output = Bitmap.createBitmap(radius, radius,
Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(output);
final Paint paint = new Paint();
final Rect rect = new Rect(0, 0, radius, radius);
paint.setAntiAlias(true);
paint.setFilterBitmap(true);
paint.setDither(true);
canvas.drawARGB(0, 0, 0, 0);
paint.setColor(Color.parseColor("#BAB399"));
canvas.drawCircle(radius/2 + 0.7f,
radius/2 + 0.7f, radius/2 + 0.1f, paint);
paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_IN));
canvas.drawBitmap(bitmap, rect, rect, paint);
return output;
}
}
Пример использования:
<your.package.name.CircularImageView
android:id="@+id/circleImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"/>
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Bitmap.Config;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.PorterDuff.Mode;
import android.graphics.PorterDuffXfermode;
import android.graphics.Rect;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.Drawable;
import android.util.AttributeSet;
import android.widget.ImageView;
public class RoundedImageView extends ImageView {
public RoundedImageView(Context context) {
super(context);
}
public RoundedImageView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public RoundedImageView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
@Override
protected void onDraw(Canvas canvas) {
Drawable drawable = getDrawable();
if (drawable == null) {
return;
}
if (getWidth() == 0 || getHeight() == 0) {
return;
}
Bitmap b = ((BitmapDrawable)drawable).getBitmap() ;
Bitmap bitmap = b.copy(Config.ARGB_8888, true);
int w = getWidth(), h = getHeight();
Bitmap roundBitmap = getCroppedBitmap(bitmap, w);
canvas.drawBitmap(roundBitmap, 0,0, null);
}
public static Bitmap getCroppedBitmap(Bitmap bmp, int radius) {
Bitmap sbmp;
if(bmp.getWidth() != radius || bmp.getHeight() != radius)
sbmp = Bitmap.createScaledBitmap(bmp, radius, radius, false);
else
sbmp = bmp;
Bitmap output = Bitmap.createBitmap(sbmp.getWidth(),
sbmp.getHeight(), Config.ARGB_8888);
Canvas canvas = new Canvas(output);
final Paint paint = new Paint();
final Rect rect = new Rect(0, 0, sbmp.getWidth(), sbmp.getHeight());
paint.setAntiAlias(true);
paint.setFilterBitmap(true);
paint.setDither(true);
canvas.drawARGB(0, 0, 0, 0);
paint.setColor(Color.parseColor("#BAB399"));
canvas.drawCircle(sbmp.getWidth()/2+0.7f, sbmp.getHeight()/2+0.7f,
sbmp.getWidth()/2+0.1f, paint);
paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));
canvas.drawBitmap(sbmp, rect, rect, paint);
return output;
}
}
При использовании макета координатор вы можете добавить эти строки в CircleImageView:
app:layout_anchor="@id/your_cover_id"
app:layout_anchorGravity="bottom|center"
К счастью Android уже поддерживает форму круга без объявления радиуса. Просто убедитесь, что ваш ImageView является квадратным:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<stroke
android:width="1dp"
android:color="#ff0000"/>
</shape>
Простой и удобный! Благодаря! –