图片加边框

来源:互联网 发布:淘宝店铺导航不在了 编辑:程序博客网 时间:2024/04/30 00:49
<LinearLayout    android:id="@+id/linear_studentphoto"    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:background="@drawable/shape_photo_bg"    >    <ImageView        android:layout_width="match_parent"        android:layout_height="match_parent"       android:layout_margin="10dp"        android:scaleType="centerCrop"        android:src="@mipmap/baobao"        android:id="@+id/student_photo" /></LinearLayout>
linear_studentphoto = (LinearLayout) view.findViewById(R.id.linear_studentphoto);int photokuan = getDeviceWidth() / 7 * 3;int photogao = photokuan * 10 / 7;linear_studentphoto.setLayoutParams(new LinearLayout.LayoutParams(photokuan, photogao));

0 0
原创粉丝点击