为了重构我的代码,我将在每个项目中使用的一些方法移动到一个 Android 库中。
例如。我用以下类创建了一个简单的库项目:
public class HttpUtils {
public boolean isNetworkAvailable(Context context) {
ConnectivityManager cm = (ConnectivityManager)
context.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo networkInfo = cm.getActiveNetworkInfo();
if (networkInfo != null && networkInfo.isConnected()) {
return true;
}
return false;
}
}
和以下(默认)清单文件:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.xxx.utils"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
</application>
</manifest>
我可以使用将它导入另一个 Android 项目
import com.xxx.utils.http.HttpUtils;
但如果我尝试使用HttpUtils.isNetworkAvailable
,我会得到HttpUtils.isNetworkAvailable cannot be resolved to a type
。
我读到,对于库活动,应该将其添加到清单文件中,但是如何HttpUtils
在库清单中添加一个简单的类,例如 my ,以便能够从另一个项目访问其方法?