任何人都可以幫助我在卡片視圖內使用此自定義佈局嗎? 我正在顯示項目列表,需要顯示這樣的項目。但不知道如何實現這一點。Android - 如何使用回收視圖創建一個像這樣的視圖?
基本上,有一個回收站的視圖 裏面有卡。 該卡有一個模糊的背景圖像。 在它的頂部,有一個與此相似的視圖。 下面有textviews,我已經實施。
但這件事情是一個真正的混亂。不知道如何做到這一點。
任何人都可以幫助我在卡片視圖內使用此自定義佈局嗎? 我正在顯示項目列表,需要顯示這樣的項目。但不知道如何實現這一點。Android - 如何使用回收視圖創建一個像這樣的視圖?
基本上,有一個回收站的視圖 裏面有卡。 該卡有一個模糊的背景圖像。 在它的頂部,有一個與此相似的視圖。 下面有textviews,我已經實施。
但這件事情是一個真正的混亂。不知道如何做到這一點。
嘗試類似這樣的東西。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="70dp"
android:layout_height="22.27dp"
android:background="@drawable/img_online_scoreboard_text_background" >
<TextView
android:id="@+id/nameTextView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_toRightOf="@+id/playerImageView"
android:ellipsize="end"
android:gravity="bottom|left"
android:lines="1"
android:scrollHorizontally="true"
android:textColor="#FFFFFF"
android:textSize="5dp" />
<ImageView
android:id="@+id/playerImageView"
android:layout_width="22.27dp"
android:layout_height="22.27dp"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:padding="0.5dp" />
</RelativeLayout>
img_online_scoreboard_text_background.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<solid android:color="#A5FFFFFF" />
<stroke
android:width="0dp"
android:color="#00FFFFFF" />
<padding
android:bottom="0dp"
android:left="0dp"
android:right="0dp"
android:top="0dp" />
<corners
android:bottomLeftRadius="10dp"
android:bottomRightRadius="10dp"
android:topLeftRadius="10dp"
android:topRightRadius="10dp" />
</shape>
設置圓形圖像編程
public static Bitmap getCircularBitmap(Bitmap bm) {
if(bm == null) {
return bm;
}
int sice = Math.min((bm.getWidth()), (bm.getHeight()));
Bitmap bitmap = ThumbnailUtils.extractThumbnail(bm, sice, sice);
Bitmap output = Bitmap.createBitmap(bitmap.getWidth(), bitmap.getHeight(), Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(output);
final int color = 0xffff0000;
final Paint paint = new Paint();
final Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight());
final RectF rectF = new RectF(rect);
paint.setAntiAlias(true);
paint.setDither(true);
paint.setFilterBitmap(true);
canvas.drawARGB(0, 0, 0, 0);
paint.setColor(color);
canvas.drawOval(rectF, paint);
paint.setColor(Color.BLUE);
paint.setStyle(Paint.Style.STROKE);
paint.setStrokeWidth((float) 4);
paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));
canvas.drawBitmap(bitmap, rect, rect, paint);
return output;
}
這樣使用它:
imageView.setImageBitmap(getCircularBitmap(bitmap));
謝謝。我修改了代碼來調整需求。這些資源幫助我構建了我所需的用戶界面。對於函數getCircularBitmap爲+1,非常有幫助。雖然在android studio呈現的佈局中看起來很完美,但是在我測試過設備中的代碼之後會發布代碼。另外,我爲圓角的透明背景創建了一個9頁的圖像。並將其設置爲相對佈局的背景。 – 2015-02-07 14:09:44
抱歉,無法投票,因爲需要15分鐘的聲望。但是,是的,這絕對是+1。有足夠的聲譽時會給它。 – 2015-02-07 14:10:39
用文本和半透明背景四捨五入的圖像層是我想要的。 圖像是卡角度的一部分,具有圓角,如左上角和右上角所示。 – 2015-02-07 13:24:40