찾다

 >  Q&A  >  본문

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일 전735

모든 응답(1)나는 대답할 것이다

  • 阿神

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

    초대해 주셔서 감사합니다. android.support.percent.PercentFrameLayout은 사용해 본 적이 없지만 패키지 이름을 보면 지원에서 제공하는 것이며 기본이 아닌 환경에서 지원되는 레이아웃이라는 것을 알 수 있습니다. 따라서 xml 코드는 다음과 같습니다. :

    으아악

    appCompat의 정의와 참조에 주의하세요.
    마지막으로, 오류가 있는 경우 코드나 레이아웃-xml에서 참조할 수 있는 모든 레이아웃(또는 뷰)을 정상적으로 사용할 수 있습니다. 제보받았습니다. 사용법이 잘못되었습니다.

    p.s. 답변이 틀리면 이 답변을 반대하세요(PercentFrameLayout을 특별히 사용하지 않았기 때문입니다).

    회신하다
    0
  • 취소회신하다