您好,登錄后才能下訂單哦!
在Android中,ImageView用于顯示圖片,ViewStub用于延遲加載布局。結合使用兩者可以實現在需要時動態加載圖片。
首先在布局文件中,可以將ViewStub和ImageView放在一起,例如:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<ViewStub
android:id="@+id/view_stub"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inflatedId="@+id/image_layout"
android:layout="@layout/image_layout"/>
<ImageView
android:id="@+id/image_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="gone"/>
</LinearLayout>
然后在代碼中,可以根據需要加載圖片到ImageView中:
ViewStub viewStub = findViewById(R.id.view_stub);
ImageView imageView = findViewById(R.id.image_view);
// 判斷是否需要加載圖片,如果需要則加載
if (needLoadImage) {
// 加載圖片到ImageView中
imageView.setImageResource(R.drawable.image);
imageView.setVisibility(View.VISIBLE);
} else {
// 顯示ViewStub布局,用于延遲加載圖片
viewStub.setLayoutResource(R.layout.image_layout);
View inflatedView = viewStub.inflate();
}
這樣就可以根據需要動態加載圖片到ImageView中,同時利用ViewStub實現延遲加載布局,避免不必要的資源消耗。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。