我设法显示多个帐户,名称和电子邮件。但我也希望能够传递一个唯一的号码,因为我传递了名称和电子邮件,以便当我点击帐户时,我可以向电子邮件,姓名和唯一号码致敬。目前我只能在点击时向当前个人资料的名称和电子邮件致敬。
这是我的Json
"sacco_info": [
{
"name": "Alex Wanjala",
"email": "wanjala@gmail.com"
"corporate_no": "169500"
}
]
这是我的代码
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
// Create the AccountHeader
Api.getVolley(this, Api.GetCorporateNumber,"{\n" +
" \"authorization_credentials\": {\n" +
" \"api_key\": \""+Const.getInstance().getAuthorizationcredentials().getApi_key()+"\",\n" +
" \"token\": \""+Const.getInstance().getAuthorizationcredentials().getToken()+"\"\n" +
" },\n" +
" \"msisdn\": \""+Const.getInstance().getMember().getMSDN()+"\"\n" +
"}",new Api.VolleyCallback() {
@Override
public void onSuccess(String response) {
try {
JSONObject jsonObj = new JSONObject(response);
JSONArray jsonArray= jsonObj.getJSONArray("sacco_info");
for(int i=0;i<jsonArray.length();i++){
JSONObject jsonObject = jsonArray.getJSONObject(i);
profile = new ProfileDrawerItem().withName(jsonObject.getString("name"))
.withEmail(jsonObject.getString("email")).withIcon(getResources().getDrawable(R.drawable.profilepic));
headerResult.addProfiles(profile);
}
} catch (JSONException e) {
e.printStackTrace();
}
}
});
headerResult = new AccountHeaderBuilder()
.withActivity(DashboardMain.this)
.withHeaderBackground(R.drawable.materiale)
.withOnAccountHeaderListener(new AccountHeader.OnAccountHeaderListener() {
@Override
public boolean onProfileChanged(View view, IProfile profile, boolean currentProfile) {
Toast.makeText(getApplicationContext(), profile.getEmail().toString(),Toast.LENGTH_LONG).show();
Toast.makeText(getApplicationContext(), profile.getName().toString(),Toast.LENGTH_LONG).show();
//Toast the corporate_no here
return false;
}
})
.build();
result = new DrawerBuilder()
.withActivity(DashboardMain.this)
.withToolbar(toolbar)
.withAccountHeader(headerResult)
.addDrawerItems(
item1, item2,item3, item4, item5, item6,
new DividerDrawerItem(),
item7, item8,item9,item10,item11
)
.withOnDrawerItemClickListener(new Drawer.OnDrawerItemClickListener() {
@Override
public boolean onItemClick(View view, int position, IDrawerItem drawerItem) {
// do something with the clicked item :D
onNavigationItemSelected(position);
return false;
}
})
.build();
或者,如果有一种方法我可以将密钥值对电子邮件存储为包含电子邮件和corparate_no的数组中的密钥,那么在我实施电子邮件的时候,它会将该电子邮件作为参数传递给数组搜索电子邮件存在的位置并返回corpare_no。
答案 0 :(得分:0)
我认为你已经在gradle中包含MaterialDrawer使用材质抽屉库作为模块。更新这个特定的布局文件,显示名称电子邮件和个人资料照片的数据。
将公司编号标签放在名称参数下方,然后重新构建并重新加载您的应用。您可以使用自己提供的ID访问该标签。
布局XML文件链接
[https://github.com/mikepenz/MaterialDrawer/blob/develop/app/src/main/res/layout/material_drawer_compact_persistent_header.xml][1]