我正在尝试实现百分比相对布局,并且正在关注本教程:
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>