如何在使用库的eclipse中导入android studio项目?

Posted

技术标签:

【中文标题】如何在使用库的eclipse中导入android studio项目?【英文标题】:How to import android studio project in eclipse which use library? 【发布时间】:2015-12-01 09:12:46 【问题描述】:

当我们在 Eclipse 中导入 android studio 项目时,它显示以下错误。

Android Studio 项目包含项目和库,当我们导入所有编译时错误已解决,但当我们从 Eclipse 运行项目时,它显示错误。

项目链接 = "https://github.com/glomadrian/material-code-input" 下面是我的 xml 布局文件。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_
    android:layout_
    android:orientation="vertical"
    android:padding="10dp"
    android:background="#FFF"

    >


  <com.github.glomadrian.codeinputlib.CodeInput
      android:layout_marginTop="20dp"
      android:layout_
      android:layout_
      app:hint_text="Pairing code"
      android:id="@+id/pairing"
      />

  <com.github.glomadrian.codeinputlib.CodeInput
      android:layout_marginTop="20dp"
      android:layout_
      android:layout_
      app:underline_color="#457ad1"
      app:underline_selected_color="#9e1ace"
      app:text_color="#b12eff"
      app:hint_color="#77ce9d"
      app:hint_text="Pin code"
      app:codes="4"
      />

  <com.github.glomadrian.codeinputlib.CodeInput
      android:layout_marginTop="20dp"
      android:layout_
      android:layout_
      app:underline_color="#d19385"
      app:underline_selected_color="#ce3a47"
      app:text_color="#5c282c"
      app:hint_color="#ce1087"
      app:hint_text="Cheat code"
      app:codes="8"
      />

  <com.github.glomadrian.codeinputlib.CodeInput
      android:layout_marginTop="20dp"
      android:layout_
      android:layout_
      app:underline_color="#03A9F4"
      app:underline_selected_color="#3F51B5"
      app:text_color="#212121"
      app:hint_color="#03A9F4"
      app:hint_text="Hash code"
      app:codes="10"
      />

</LinearLayout>

下面是截图。

【问题讨论】:

你能把这个活动使用的xml布局文件贴出来吗? 以上是我的xml文件 您只需要升级eclipse版本和sdk即可获得V7的支持。给你.... 【参考方案1】:

你的项目似乎有材料设计 您必须从此链接 https://github.com/navasmdc/MaterialDesignLibrary 添加一个名为 Material Design 的项目到您的工作区 之后进入您的项目并转到属性-> android->添加并从那里选择材料设计库

【讨论】:

以上是关于如何在使用库的eclipse中导入android studio项目?的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Eclipse 中导入 Android Studio 项目?

如何在intellij IDEA中导入ECLIPSE的android项目

如何在Android项目中导入OpenCV库?

在 Eclipse 中的 android 应用程序中导入打开的街道地图

Android:在eclipse中导入facebook sdk 4.10.1

Android Studio中导入Eclipse项目后乱码的解决方法