问题描述
- 不能在relative布局中顶部和底部设置一个黑色条
-
这是我设置的代码:<RelativeLayout android:id="@+id/layout" android:layout_width="wrap_content" android:layout_height="wrap_content" > <ImageView android:id="@+id/black_strip_top" android:layout_width="wrap_content" android:layout_above="@id/left_strip" android:layout_height="2dp" android:background="@color/black" /> <ImageView android:id="@+id/black_strip_below" android:layout_width="wrap_content" android:layout_below="@id/left_strip" android:layout_height="2dp" android:background="@color/black" /> <ImageView android:id="@+id/left_strip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/left_strip" /> <ImageView android:id="@+id/right_strip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_toRightOf="@id/image" android:src="@drawable/right_strip" /> <ImageView android:id="@+id/image" android:layout_width="wrap_content" android:layout_height="wrap_content" android:scaleType="fitXY" /> </RelativeLayout>
我想在图像的顶部和底部设置一个2dp的黑色条,上面的代码没有实现,要修改哪些代码片段可以实现这个效果呢?
解决方案
这个方法可以:
alertDialog.setOnCancelListener(new OnCancelListener() {
public void onCancel(DialogInterface dialog) {
// Your code
}
});
解决方案二:
做个.9的png,上下都是2dp的黑色,中间是透明,然后设置ImageView的background即可。
时间: 2024-11-30 13:38:56