I am working on an Android project in which I have a navigation drawer which shows a list of GroupSection
objects. All the GroupSection objects contain a section icon. The drawer icons are determined by a TypedArray and some android specific syntax to get the resource. I want to replace that with a font-awesome icon. Each groupSection object has a getter groupSection.getSectionIcon();
which returns me the String of icon. I have added the icons in String.xml and have the fontawesome-webfont.ttf
in assets directory.
I just cannot figure out how to replace the typed array with font-awesome icon. I tried findViewByID(R.id.awesome_icon).getId()
, and some other possibilites. Thank you.
COde :
public void set(List<RestSection> restSectionList, TypedArray navMenuIcons, Long groupId,
int canvasid, int sectionId) {
// Below are default icons
navMenuIcons = getResources()
.obtainTypedArray(R.array.nav_drawer_icons);
for (RestSection restSection : restSectionList) {
// As you can see I am accessing the icons with there resource id.
navDrawerItems.add(new DrawerModel(restSection.getMsectionname(),
navMenuIcons.getResourceId(0, -1), restSection.getMsectionid()));
}
Sample of string.xml :
<string name="pinterest"></string>
<string name="pinterest_square"></string>
<string name="google_plus_square"></string>
<string name="google_plus"></string>
<string name="money"></string>
<string name="caret_down"></string>
<string name="caret_up"></string>
<string name="caret_left"></string>
<string name="caret_right"></string>
<string name="columns"></string>
As in the for-loop I can directly get the icon String with getter, but setting it is where the issue lies. Any help would be nice. Thank you. :-)
Update
I tried the below code where I would manually set, but I get error for that as well :
Unable to find resource: 2131165836
android.content.res.Resources$NotFoundException: File from drawable resource ID #0x7f07028c
at android.content.res.Resources.loadDrawableForCookie(Resources.java:2640)
at android.content.res.Resources.loadDrawable(Resources.java:2540)
at android.content.res.Resources.getDrawable(Resources.java:806)
at android.content.Context.getDrawable(Context.java:458)
at android.widget.ImageView.resolveUri(ImageView.java:811)
at android.widget.ImageView.setImageResource(ImageView.java:418)
Code :
for (RestSection restSection : restSectionList) {
if (restSection.getSectionIcon() != null) {
DrawerModel drawerModel = new DrawerModel();
drawerModel.setTitle(restSection.getMsectionname());
drawerModel.setId(restSection.getMsectionid());
drawerModel.setIcon(R.string.try_icon);
navDrawerItems.add(drawerModel);
} else {
navDrawerItems.add(new DrawerModel(restSection.getMsectionname(),
navMenuIcons.getResourceId(0, -1), restSection.getMsectionid()));
}
}