设置图片固定大小,且保持图片宽高比
?
<LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="10px" > <ImageView android:adjustViewBounds="true" android:layout_width="fill_parent" android:layout_height="160px" android:scaleType="fitCenter" android:layout_gravity="center" android:src="@drawable/icon" /> </LinearLayout>?