3

私はパーセント相対レイアウトを実装しようとしており、このチュートリアルに従っています:

https://blog.stylingandroid.com/percent-part-1/

コードにエラーはないようですが、まだプレビューがなく、次のように表示されます。

「レンダリングの問題 レンダリング中に例外が発生しました: android/support/percent/R$stylable」

何が問題なのですか?

「build.gradle (Module:app)」からの私の依存関係は次のとおりです。

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:24.0.0-alpha1'
    compile 'com.android.support:percent:23.0.0'
} 

上の二人は最初からいた。

私のXMLファイル:

<android.support.percent.PercentRelativeLayout
    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"
    app:layout_paddingRightPercent="2%"
    app:layout_paddingLeftPercent="2%"
    app:layout_paddingBottomPercent="2%"
    tools:context="companyname.appname.SeLister">

    <TextView android:text="Reklame"
        app:layout_heightPercent="10%"
        app:layout_widthPercent="50%"
        android:id="@+id/listereklame"
        android:textColor="#000000"
        android:background="@drawable/tekstboks1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="16dp"
        />

</android.support.percent.PercentRelativeLayout>
4

1 に答える 1

0

私はそれを解決したと思います。初期化タグから埋め込み属性を削除します。願わくば、これが同じ問題を抱えている他の人の助けになることを願っています。

于 2016-04-06T11:19:18.573 に答える