В моем приложении Android у меня есть пункт меню. Я хотел добавить еще один пункт меню Моя панель, которая перенаправляется на страницу панели администратора gmumbai.co. in/admin.Как это сделать. Пожалуйста, помогите мне с образцом кода. Спасибо заранее.Я хотел получить доступ к моей странице панели администратора через пункт меню моего приложения Android
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_overview, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
Intent intent;
switch (item.getItemId()) {
case R.id.action_logout:
app = ((MyApplication) getApplicationContext());
app.logOut();
intent = new Intent(overview.this, LoginActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK);
overview.this.startActivity(intent);
overview.this.finish();
return true;
case R.id.action_MyPanel:
Uri uri=Uri.parse("http://gmumbai.co.in/admin");
overview.this.startActivity(new Intent (Intent.ACTION_VIEW,uri));
overview.this.finish();
return true;
default:
return super.onOptionsItemSelected(item);
}
}
}
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" tools:context="com.gmumbai.gvendor.overview">
<item android:id="@+id/action_logout" android:title="@string/action_logout"
android:orderInCategory="100" app:showAsAction="never" />
<item android:id="@+id/action_MyPanel" android:title="@string/action_MyPanel"
android:orderInCategory="100" app:showAsAction="never" />
</menu>
Вы хотите открыть веб-браузер, нажав на пункт меню? –
Что вы сделали для этого? Покажите свой код/усилия здесь. StackOverflow не является службой написания кода. Если у вас есть проблемы с кодом, предоставьте минимальный, полный и проверяемый пример. –
, пожалуйста, просмотрите мой код. Я добавил два пункта menu.but. Я не смог увидеть второй пункт меню на моей панели, где мне захотелось получить доступ к странице admin.so только я попросил образец кода. – tiji