1

私は使用しようとしていますandroid.support.percent.PercentRelativeLayout:

<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 Studio でエラーが発生します。

"layout_height should be specified
"layout_width should be specified"

Project is building now, but studio shows errors and do not suggest autocompletion when I start typing "percent..."

私は何を間違っていますか?

これは公式サイトの例ですが、なぜ機能しないのですか?

4

1 に答える 1

2

質問はここで答えられました: PercentRelativeLayout - layout_width missing warning

基本的; 幅と高さは PercentRelativeLayout によって無視されますが、Android Studio はそれらがここにあると想定しているため、それらを 0dp に設定する必要があります。

于 2016-08-25T10:35:04.173 に答える