フラグメントでライブラリを呼び出そうとしていますが、フラグメントでライブラリを設定する方法がわかりません メイン アクティビティで実行しましたが、フラグメントで setContentView をコンパイル依存関係に設定する際にエラーが発生します
compile 'com.github.medyo:android-about-page:1.0.2'
私のフラグメントコンテンツビュー
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View rootView = inflater.inflate(R.layout.fragment_navigation, container, false);
Element versionElement = new Element();
versionElement.setTitle("Version 6.2");
Element adsElement = new Element();
adsElement.setTitle("Advertise with us");
View aboutPage = new AboutPage(getActivity())
.isRTL(false)
.addItem(versionElement)
.addItem(adsElement)
.addGroup("Connect with us")
.addEmail("elmehdi.sakout@gmail.com")
.addFacebook("the.medy")
.addTwitter("medyo80")
.addYoutube("UCdPQtdWIsg7_pi4mrRu46vA")
.addPlayStore("com.ideashower.readitlater.pro")
.addInstagram("medyo80")
.addGitHub("medyo")
.create();
setContentView(aboutPage);
return rootView;
}
これを解決する方法は、最後から 2 行目にエラーがあります。次のライブラリは、api 20+ ライブラリで動作します https://github.com/medyo/android-about-page