你能给一些项目如何在android上插入这样的图像吗?我想在我的xml中添加该图像。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</RelativeLayout>
如何将图像显示在我的图像上?
答案 0 :(得分:1)
使用ImageView。它采用所有标准格式。
答案 1 :(得分:1)
您可以使用ImageView:
<ImageView
android:id="@+id/logo_small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:src="@drawable/logo" />
并将您的图像文件放入res/drawable/logo.gif
(或在特定于分辨率的可绘制目录中)
答案 2 :(得分:1)
如果你想显示移动的GIF,那么没有直接的方法,你必须尝试一下,请参阅下面的链接了解更多细节。
REF GIF in Android
或者您可以在Web视图中加载图像并显示它。 (网页视图应该能够显示动画)