为什么添加依赖后,还是不能使用layout_widthPercent/layout_heightPercent?
依赖:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:percent:24.2.1'
compile 'com.android.support:appcompat-v7:24.2.1'
testCompile 'junit:junit:4.12'
}
使用layout_widthPercent
<?xml version="1.0" encoding="utf-8"?>
<android.support.percent.PercentFrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button1"
android:text="Button1"
android:layout_gravity="left|top"
android:layout_widthPercent="50%"
android:layout_heightPercent="50%"/>
</android.support.percent.PercentFrameLayout>
告警:
No resource identifier found for attribute 'layout_widthPercent' in package 'android'
초대해 주셔서 감사합니다.
으아악android.support.percent.PercentFrameLayout
은 사용해 본 적이 없지만 패키지 이름을 보면 지원에서 제공하는 것이며 기본이 아닌 환경에서 지원되는 레이아웃이라는 것을 알 수 있습니다. 따라서 xml 코드는 다음과 같습니다. :appCompat의 정의와 참조에 주의하세요.
마지막으로, 오류가 있는 경우 코드나 레이아웃-xml에서 참조할 수 있는 모든 레이아웃(또는 뷰)을 정상적으로 사용할 수 있습니다. 제보받았습니다. 사용법이 잘못되었습니다.
p.s. 답변이 틀리면 이 답변을 반대하세요(PercentFrameLayout을 특별히 사용하지 않았기 때문입니다).