1
使用谷歌眼鏡,我想知道是否有可能有一個imageView佔據了所有的空間?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>
檢查您的layout.xml文件,其中此imageview在那裏。從父級佈局中刪除所有引用dimen.xnl文件的android:padding標籤。 – 2014-09-01 12:41:44
事實上,我沒有發佈我的整個XML,我編輯了我的問題 – Pull 2014-09-01 12:49:45
設置您的線性佈局的寬度和高度爲640和360像素.. – 2014-09-02 06:47:36