android 图像水平堆叠
android image stack on top of each other horizontally
我想显示这样的图像,比如堆叠在一起,如何动态实现这种设计
例如将 leftmargin 设置为 -16dp
或图片宽度的 1/4
请使用此代码:-
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:contentDescription="@string/app_name"
android:src="@drawable/image_1" />
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:layout_marginStart="-50dp"
android:contentDescription="@string/app_name"
android:src="@drawable/image_2" />
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:layout_marginStart="-50dp"
android:contentDescription="@string/app_name"
android:src="@drawable/image_3" />
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:layout_marginStart="-50dp"
android:contentDescription="@string/app_name"
android:src="@drawable/image_4" />
</LinearLayout>
我想显示这样的图像,比如堆叠在一起,如何动态实现这种设计
例如将 leftmargin 设置为 -16dp 或图片宽度的 1/4
请使用此代码:-
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:contentDescription="@string/app_name"
android:src="@drawable/image_1" />
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:layout_marginStart="-50dp"
android:contentDescription="@string/app_name"
android:src="@drawable/image_2" />
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:layout_marginStart="-50dp"
android:contentDescription="@string/app_name"
android:src="@drawable/image_3" />
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:layout_marginStart="-50dp"
android:contentDescription="@string/app_name"
android:src="@drawable/image_4" />
</LinearLayout>