1

你能给一些项目如何在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>

如何显示我的图像?

4

3 回答 3

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(或特定分辨率的可绘制目录中)

于 2013-01-13T09:19:05.747 回答
1

如果要显示动态 GIF 则没有直接的方法,您必须尝试一种方法,请参阅下面的链接以获取更多详细信息。

Android 中的REF GIF

或者,您可以在 Web 视图中加载图像并显示它。(网页视图应该能够显示动画)

于 2013-01-13T09:49:03.253 回答
1

使用 ImageView。它采用所有标准格式。

于 2013-01-13T09:15:18.393 回答