を使用して、ビューで 16:9 のアスペクト比を実現しようとしていPercentRelativeLayout
ます。
だから私は私のbuild.gradleファイルにこの行を入れました:compile 'com.android.support:design:23.0.1'
私はこのレイアウトを使用します:
<android.support.percent.PercentRelativeLayout
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="wrap_content">
<ImageView
android:layout_width="match_parent"
app:layout_aspectRatio="178%"
android:scaleType="centerCrop"/>
</android.support.percent.PercentRelativeLayout>
問題:
- Android Studio は次のように警告し
'layout_height' should be defined
ますImageView
。 - プロジェクトを実行すると、次のようになりまし
Error:(15) No resource identifier found for attribute 'layout_aspectRatio'
た。
では、何が問題なのですか?