如何根据自定义ImageView创建缩放的位图

时间:2016-12-08 06:43:54

标签: android bitmap libraries

实际上我想根据ImageView维度将位图设置为我的ImageView,我还有一个查询,在我的Android应用程序中,我在我的应用程序中使用了TEN第三方库,所以当我打开应用程序时需要一些时间加载第一个活动。那么,这可能是由图书馆造成的吗?

ImageVIew XML:

 <com.mikhaellopez.circularimageview.CircularImageView
    android:layout_width="100dp"
    android:layout_height="100dp"
    android:id="@+id/girl"
    android:src="@drawable/user"
    app:civ_border_color="#ffffff"
    app:civ_border_width="4dp"
    app:civ_shadow="true"
    app:civ_shadow_radius="1"
    app:civ_shadow_color="#bdbdbd"
    android:layout_alignParentTop="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:layout_marginLeft="119dp"
    android:layout_marginStart="119dp"
   />

代码:

Bitmap bitmap_j = (Bitmap) getIntent().getParcelableExtra("image_key");
      Bitmap scaledBitmap=Bitmap.createScaledBitmap(bitmap_j,400,220,true);

0 个答案:

没有答案