android完整项目源码,怎样布置已有源代码的android项目

1,怎样布置已有源代码的android项目服务端应该是在电脑上运行的,客户端是手机上运行的 。你首先导入项目,然后设置properties,Window》show view打开problem看看是什么问题运行的时候看看项目的配置文件,Constant这些的 。祝你成功!不需要地址,linux装git即可下载 。android只对linux开放源代码下载 。要是提高分数的话,我可以考虑发给你哦 。。
2,如何在Android系统源码中添加C项目以hello_android为例 , 步骤如下:1、在external目录下创建hello_android目录,然后在hello_android目录中编写hello_android C语言实现文件hello_android.h , hello_android.c: ?。ㄗⅲ篽ello_android目录可以放置在Android系统源码下的任意目录中 , 并非一定要在external下 。)hello_android.h#include#includevoid makePrintf(char *str)printf("%s", str);}hello_android.c#include#include#include "hello_android.h"int main(int argc, char** argv)makePrintf("hello, android!\n");return 0;}2、编写负责编译的Android.mk文件:LOCAL_PATH :=$(call my-dir)include $(CLEAR_VARS)LOCAL_SRC_FILES :=hello_android.cLOCAL_C_INCLUDES +=$(LOCAL_PATH)LOCAL_MODULE :=hello_androidLOCAL_MODULE_TAGS :=enginclude $(BUILD_EXECUTABLE)3、利用mm编译生成hello_android二进制可执行文件;4、将helllo_android文件复制到/system/bin目录下执行:#./hello_androidhello, android!5、代码结构$ pwdexternal/hello_android$ tree【android完整项目源码,怎样布置已有源代码的android项目】

    推荐阅读