91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ImageView的寬高自適應設置

發布時間:2024-08-20 14:51:20 來源:億速云 閱讀:154 作者:小樊 欄目:移動開發

要讓ImageView的寬高自適應設置,可以使用以下方法:

  1. 設置ImageView的寬高屬性為wrap_content,這樣ImageView的寬高會根據圖片的實際大小自動調整。
<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/image" />
  1. 如果需要ImageView的寬高與屏幕比例相同,可以設置scaleType屬性為centerCrop或fitXY。
<ImageView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:scaleType="centerCrop"
    android:src="@drawable/image" />
  1. 如果需要動態調整ImageView的寬高,可以在代碼中獲取屏幕尺寸并設置ImageView的LayoutParams。
DisplayMetrics displayMetrics = getResources().getDisplayMetrics();
int screenWidth = displayMetrics.widthPixels;
int screenHeight = displayMetrics.heightPixels;

ImageView imageView = findViewById(R.id.imageView);
imageView.setLayoutParams(new LinearLayout.LayoutParams(screenWidth, screenHeight));
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

藁城市| 射阳县| 湖口县| 德钦县| 永德县| 娄烦县| 寿阳县| 五台县| 通化市| 宜兰县| 南漳县| 和林格尔县| 唐河县| 余江县| 哈巴河县| 时尚| 青川县| 闵行区| 年辖:市辖区| 墨竹工卡县| 公安县| 祁连县| 朔州市| 玉环县| 奉化市| 集贤县| 汪清县| 高邮市| 房山区| 宜兰县| 荣昌县| 利川市| 平遥县| 镇原县| 枣庄市| 武邑县| 临夏县| 兴和县| 高台县| 平和县| 马公市|