我想要折叠工具栏,首先我添加
compile 'com.android.support:cardview-v7:24.2.1'
compile 'com.android.support:recyclerview-v7:24.2.1'
然后在main_activity中我制作了CollapsingToolbarLayout并给出了它的属性值:
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:expandedTitleTextAppearance="@android:color/transparent"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
但是当我按下Run我的android并没有认出这个库并向我显示这个错误
这个图书馆有什么问题?我怎么解决这个问题? 我很高兴向我展示一个解决方案
答案 0 :(得分:1)
我认为这个问题是由于缺少" app" xml布局中的命名空间。
要解决此问题,请在xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
命名空间行