使用Google Glass,我想知道是否有可能占用所有空间的imageView?
使用以下代码,我在图像周围总是有10px的东西:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/relativelayoutImage"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="0sp"
android:layout_margin="0sp" >
<ImageView
android:id="@+id/myImageView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:keepScreenOn="true"
android:scaleType="fitXY"
android:src="@drawable/splashscreen" />
</LinearLayout>
答案 0 :(得分:1)
如果您确定没有填充或主题,则您的视图可能已全屏显示。那个神秘的额外空间不是Glass屏幕的一部分或不可用。
试试这个:
adb shell screencap -p /sdcard/screen.png
adb pull /sdcard/screen.png
您会看到来自帧缓冲区的图像在图像周围没有10像素。
我不确定你的情况,但那是发生在我身上的事。