我正在开发一个应用程序,我需要在应用程序屏幕底部放置一个横幅,例如NDTV和技术紧缩,
问题:
我尝试过使用看起来完美的 320 x 38 像素大小。当我使用大于 38 的高度时,它是像素化的,这是我的代码:
<ImageView
android:id="@+id/listBanner"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:adjustViewBounds="true"
android:cropToPadding="false"
android:scaleType="fitXY"
android:src="@drawable/mobi" />
你能帮帮我吗?
提前谢谢你!
如果您
不想拥有像素化图像,则不应将"fill_content"用于layout_width。如果您这样做并且您的图像不够大,它将填充所有底部宽度,如果它不够大,则会对其进行像素化。