如何使用Android在移动设备的左上角显示小位图?

时间:2014-01-31 08:34:11

标签: android android-layout android-ui android-bitmap

我想在屏幕的一角显示一个位图,它应该始终位于顶部。我该怎么做?我是android的新手。

2 个答案:

答案 0 :(得分:1)

使用RelativeLayout作为父布局。
然后添加像

这样的ImageView
<ImageView 
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_alignParentLeft="true"/>

答案 1 :(得分:0)

你可以使用android.graphics包中的canvas类来实现这个目的。这里有一个快速的教程链接。

http://developer.android.com/training/custom-views/custom-drawing.html

以及如何在此处放置图像是其中的链接。

https://stackoverflow.com/a/10362845/1659523