android - No resource identifier found for attribute -


i trying learn bit of material design , have run error putting app have never seen before , cant figure out how fix.

the error

/users/rory/downloads/materialdesign/app/src/main/res/layout/activity_detail.xml error:(89) no resource identifier found attribute 'uirotategestures' in package 'info.androidhive.materialdesign' error:(89) no resource identifier found attribute 'uiscrollgestures' in package 'info.androidhive.materialdesign' error:(89) no resource identifier found attribute 'uitiltgestures' in package 'info.androidhive.materialdesign' error:(89) no resource identifier found attribute 'uizoomcontrols' in package 'info.androidhive.materialdesign' error:(89) no resource identifier found attribute 'uizoomgestures' in package 'info.androidhive.materialdesign' 

i have tried solutions show here error: no resource identifier found attribute 'adsize' in package 'com.google.example' main.xml hasnt solved error. great, thanks

this activity_detail.xml

<?xml version="1.0" encoding="utf-8"?> <scrollview     xmlns:android="http://schemas.android.com/apk/res/android"     xmlns:map="http://schemas.android.com/apk/res-auto"     xmlns:io="http://schemas.android.com/apk/res-auto"     xmlns:tools="http://schemas.android.com/tools"     tools:context="info.androidhive.materialdesign.activity.friendsfragment"      android:id="@+id/content"      android:layout_width="match_parent"     android:layout_height="match_parent">      <linearlayout         android:id="@+id/container"          android:layout_width="match_parent"         android:layout_height="wrap_content"          android:orientation="vertical">          <framelayout             android:layout_width="match_parent"             android:layout_height="wrap_content">              <imageview                 android:id="@+id/photo"                 android:transitionname="photo_hero"                  android:layout_width="match_parent"                 android:layout_height="wrap_content"                  android:tint="@color/photo_tint"                 android:scaletype="centercrop"                  android:contentdescription="@string/photo_description" />              <imagebutton                 android:id="@+id/info"                 android:layout_width="@dimen/floating_button_size"                 android:layout_height="@dimen/floating_button_size"                  android:layout_gravity="bottom|end"                 android:layout_marginend="16dp"                 android:layout_marginbottom="16dp"                  android:alpha="0.0"                  android:background="@drawable/info_background"                 android:src="@drawable/ic_info"                  android:elevation="@dimen/button_elevation"                 android:statelistanimator="@anim/button_raise"                  android:onclick="showinformation"                  android:contentdescription="@string/info_button_description" />              <imagebutton                 android:id="@+id/star"                 android:layout_width="@dimen/floating_button_size"                 android:layout_height="@dimen/floating_button_size"                  android:layout_gravity="bottom|start"                 android:layout_marginstart="16dp"                 android:layout_marginbottom="16dp"                  android:alpha="0.0"                  android:background="@drawable/info_background"                 android:src="@drawable/ic_star"                  android:elevation="4dp"                 android:statelistanimator="@anim/button_raise"                  android:onclick="showstar"                  android:contentdescription="@string/star_button_description" />              <framelayout                 android:id="@+id/information_container"                  android:layout_width="match_parent"                 android:layout_height="match_parent"                  android:visibility="invisible">                  <fragment                     android:id="@+id/map"                      android:layout_width="match_parent"                     android:layout_height="match_parent"                      android:name="com.google.android.gms.maps.mapfragment"                      tools:ignore="missingprefix"                     map:uirotategestures="false"                     map:uiscrollgestures="false"                     map:uitiltgestures="false"                     map:uizoomcontrols="false"                     map:uizoomgestures="false" />              </framelayout>              <com.example.android.io2014.ui.animatedpathview                 android:id="@+id/star_container"                  android:layout_width="match_parent"                 android:layout_height="match_parent"                  android:visibility="invisible"                  io:phase="1.0"                 io:duration="1000"                 io:fillduration="500"                 io:filloffset="400"                 io:strokewidth="6dp"                 io:strokecolor="#ffffffff"                 io:fillcolor="#ffffffff"                 io:svgpath="@raw/star" />          </framelayout>          <textview             android:id="@+id/title"             android:layout_width="wrap_content"             android:layout_height="wrap_content"              android:layout_margin="24dp"              android:textsize="40sp"             android:fontfamily="sans-serif-light" />          <textview             android:id="@+id/description"              android:layout_width="wrap_content"             android:layout_height="wrap_content"              android:layout_marginleft="24dp"             android:layout_margintop="12dp"             android:layout_marginright="24dp"             android:layout_marginbottom="24dp"              android:textsize="20sp"             android:linespacingmultiplier="1.2" />      </linearlayout>  </scrollview> 


Comments

Popular posts from this blog

javascript - Slick Slider width recalculation -

jsf - PrimeFaces Datatable - What is f:facet actually doing? -

angular2 services - Angular 2 RC 4 Http post not firing -