検索

ホームページ  >  に質問  >  本文

android - layout_widthPercent加载dependencies后还是不能使用,是什么原因?

为什么添加依赖后,还是不能使用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'

阿神阿神2772日前727

全員に返信(1)返信します

  • 阿神

    阿神2017-04-18 09:06:22

    招待していただきありがとうございます。android.support.percent.PercentFrameLayout を使用したことはありませんが、パッケージ名からおそらくサポートによって提供されており、非ネイティブ環境でサポートされているレイアウトであることがわかります。そのため、XML コードは次のようになります。

    リーリー

    appCompat の定義と参照に注意してください。
    最後に、エラーが発生した場合でも、コード内で参照できるレイアウト (またはビュー) は正常に使用できます。報告しました。それは間違った使用法です。

    追伸。答えが間違っている場合は、この回答に反対票を投じてください (PercentFrameLayout を特に使用していないため)。

    返事
    0
  • キャンセル返事