2016-08-25 146 views
1

我正在嘗試使用android.support.percent.PercentRelativeLayout。
Android百分比佈局寬度和高度應該指定

<ScrollView 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

    <android.support.percent.PercentRelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:background="@color/white"> 

    <ImageView 
       app:layout_widthPercent="70%" 
       app:layout_aspectRatio="1000%" 
       app:layout_marginTopPercent="15%" 
       android:layout_centerHorizontal="true" 
       android:src="@drawable/logo"/> 
    </android.support.percent.PercentRelativeLayout> 
</ScrollView> 

Android的工作室給我的錯誤:現在

"layout_height should be specified 
"layout_width should be specified" 

項目正在建設,但工作室的顯示錯誤,當我開始打字「百分比......」不建議自動完成。
我在做什麼錯?

Here is來自官方網站的示例,爲什麼它不起作用?

+1

使''layout_height'和''layout_widht'成爲'0dp' .... – sushildlh

回答