1. 程式人生 > >android動態設置圖片

android動態設置圖片

圖片 動態 mar and con ont wrap oid tor

<ImageView
android:id="@+id/adapter_store_employee_list_imgv_sex"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="2dp"
android:layout_marginLeft="5dp"
android:src="@mipmap/adapter_store_employee_male"/>

if(PersonSex.FAMALE.getValue() == user.getSex())
holder.imgvSex.setImageResource(R.mipmap.adapter_store_employee_female);
else
holder.imgvSex.setImageResource(R.mipmap.adapter_store_employee_male);

android動態設置圖片