私のアンドロイドアプリでは、メニュー項目logoutを持っています。別のメニュー項目My Panelを管理パネルページgmumbai.coにリダイレクトしたいと思います。 in/admin.Howこれを達成するために。サンプルコードで私を助けてください。事前に感謝します。私のアンドロイドアプリのメニュー項目から管理用パネルページにアクセスしたい
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>
メニュー項目をクリックしてWebブラウザを開きますか? –
これを達成するためにあなたは何をしましたか?あなたのコード/努力をここに示してください.StackOverflowはコード作成サービスではありません。コードに問題がある場合は、最小、完全、および検証可能な例を提供してください。 –
私のコードを確認してください。私は2つのメニュー項目を追加しました。しかし、私は私の管理パネルpage.soにアクセスしたい私のパネルの2番目のメニュー項目を見ることができません私はサンプルコードを求めた。 – tiji