Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想问一下Android是否接受JPEG图像而不是PNG,因为PNG的文件大小比JPEG大。
我想知道如何在 layout.xml 文件中使用 JPEG 作为背景图像。你能帮助我吗?
只需将一个.jpg文件放在您的 res/drawable 文件夹中,然后像往常一样引用它。
.jpg
例如,如果您放入picture.jpg可绘制文件夹,从您的一个视图中,您可以执行以下操作。
picture.jpg
<View android:id="@+id/view_id" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/picture" />