android:layout_gravity="bottom|right"
android:layout_margin="16dp" alt="如何使用Layoutparams为Android布局设置参数?" class="img img_hover" />
android:id="@+id/imageView" />
```
2.在活动类中添加以下内容:
```
ImageView imageView = (ImageView)findViewById(R.id.imageView);
imageView.setBackgroundColor(Color.BLACK);
```