从android中已导入的库导入样本

时间:2017-02-25 15:53:08

标签: android android-studio android-gradle android-library

在android工作室中,我已经成功导入了一个名为ChatKit(https://github.com/stfalcon-studio/ChatKit)的库。图书馆的创建者非常友好,可以在图书馆中包含完整的工作样本。我没有重新创建进程,而是想将示例从库导入到我的项目中,但Android工作室不允许我这样做。

在我的主要活动中,我可以添加:

import com.stfalcon.chatkit.dialogs.DialogsList;

但是什么时候不能添加:

import com.stfalcon.chatkit.sample.ChatSamplesListAdapter;

所以我很好奇其他人从已导入的图书馆导入样本的行为。

谢谢。

1 个答案:

答案 0 :(得分:3)

  

import com.stfalcon.chatkit.sample.ChatSamplesListAdapter;

发生这种情况是因为该类未包含在库中 它是sample file用作样本。

正如您所看到的,它只是一个简单的RecyclerView.Adapter,您可以将其复制到项目中,也可以使用自己的适配器。