为什么添加依赖后,还是不能使用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'
阿神2017-04-18 09:06:22
招待していただきありがとうございます。android.support.percent.PercentFrameLayout
を使用したことはありませんが、パッケージ名からおそらくサポートによって提供されており、非ネイティブ環境でサポートされているレイアウトであることがわかります。そのため、XML コードは次のようになります。
appCompat の定義と参照に注意してください。
最後に、エラーが発生した場合でも、コード内で参照できるレイアウト (またはビュー) は正常に使用できます。報告しました。それは間違った使用法です。
追伸。答えが間違っている場合は、この回答に反対票を投じてください (PercentFrameLayout を特に使用していないため)。