我正在尝试使用从Github下载的项目中的代码,但是我一直都会遇到错误。
使用项目需要更多步骤而不是将其导入eclipse吗?
我目前只是将下载项目中的代码复制并粘贴到我的代码中。
尝试使用以下内容:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/com.mikhaellopez.circularimageviewsample"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:orientation="vertical" >
<com.mikhaellopez.circularimageview.CircularImageView
android:layout_width="250dp"
android:layout_height="250dp"
android:src="@drawable/image"
app:border="true"
app:border_color="@color/GrayLight"
app:border_width="4dp"
app:shadow="true" />
</LinearLayout>
但得到错误:
Multiple annotations found at this line:
- error: No resource identifier found for attribute 'border_color' in package
'com.mikhaellopez.circularimageviewsample'
- error: No resource identifier found for attribute 'shadow' in package
'com.mikhaellopez.circularimageviewsample'
- error: No resource identifier found for attribute 'border' in package
'com.mikhaellopez.circularimageviewsample'
- error: No resource identifier found for attribute 'border_width' in package
'com.mikhaellopez.circularimageviewsample'
答案 0 :(得分:3)
使用项目需要更多步骤而不是将其导入eclipse吗?
嗯,这取决于。
我目前只是将下载项目中的代码复制并粘贴到我的代码中。
根据代码的编写方式,这可能效果不佳。
但得到错误:
变化:
xmlns:app="http://schemas.android.com/apk/res/com.mikhaellopez.circularimageviewsample"
为:
xmlns:app="http://schemas.android.com/apk/res-auto"
因为您的应用显然没有包名com.mikhaellopez.circularimageviewsample
。