我有一个名为MainActivity.java的类,这个java包含导航条形码。
如果我想构建另一个名为Contact.java的活动,并且还包含导航条形码。如何重用MainActivity.java中的导航栏代码到Contact.java?我可以创建一个类来解决它吗?
这是我的代码:
package com.thisistap.isuper.www.contactbook;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.support.design.widget.NavigationView;
import android.support.v4.view.GravityCompat;
import android.support.v4.widget.DrawerLayout;
import android.support.v7.app.ActionBarDrawerToggle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.MenuItem;
import android.widget.Button;
import android.widget.TabHost;
import com.thisistap.isuper.www.contactbook.nav.*;
public class MainActivity extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener {
private Button contact_button;
private TabHost mTabHost = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// defined elements from layout (it can be modified)
contact_button = (Button) findViewById(R.id.contact_button);
// --- [Start] defined elements from Navigation Bar (it cannot be modified from here) ---
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
drawer.setDrawerListener(toggle);
toggle.syncState();
NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
navigationView.setNavigationItemSelectedListener(this);
// --- [End] defined elements from Navigation Bar (it cannot be modified from here) ---
// --- [Start] Button Group ---
contact_button.setOnClickListener(new Button.OnClickListener() {
@Override
public void onClick(View v) {
Intent myIntent = new Intent(MainActivity.this,Contact.class);
MainActivity.this.startActivity(myIntent);
}
});
// --- [End] Button Group ---
}
// --- [Start] Navigation Bar Action (it cannot be modified from here) ---
@Override
public void onBackPressed() {
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
if (drawer.isDrawerOpen(GravityCompat.START)) {
drawer.closeDrawer(GravityCompat.START);
} else {
super.onBackPressed();
}
}
@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();
return super.onOptionsItemSelected(item);
}
@SuppressWarnings("StatementWithEmptyBody")
@Override
public boolean onNavigationItemSelected(MenuItem item) {
// Handle navigation view item clicks here.
int id = item.getItemId();
if (id == R.id.nav_camera) {
Intent myIntent = new Intent(MainActivity.this,Contact.class);
MainActivity.this.startActivity(myIntent);
} else if (id == R.id.nav_gallery) {
} else if (id == R.id.nav_slideshow) {
} else if (id == R.id.nav_manage) {
} else if (id == R.id.nav_share) {
} else if (id == R.id.nav_send) {
}
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
drawer.closeDrawer(GravityCompat.START);
return true;
}
// --- [End] Navigation Bar Action (it cannot be modified from here) ---
}
答案 0 :(得分:0)
我建议您从基础活动扩展您的活动,并将您的共同逻辑实施到此父级。
答案 1 :(得分:0)
只需执行此操作 - 将所有抽屉代码放在BaseActivity和BaseActivity的XML中,将DrawerLayout作为父级以及容器(就像您为片段所做的那样)和NavigationView。您还可以查看this答案。它解决了同样的问题。
然后将BaseActivity扩展到MainActivity,而不是使用setContentView(),在BaseActivity的容器中对其进行充气。
public class BaseActivity extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// --- [Start] defined elements from Navigation Bar (it cannot be modified from here) ---
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
drawer.setDrawerListener(toggle);
toggle.syncState();
NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
navigationView.setNavigationItemSelectedListener(this);
// --- [End] defined elements from Navigation Bar (it cannot be modified from here) ---
}
// --- [Start] Navigation Bar Action (it cannot be modified from here) ---
@Override
public void onBackPressed() {
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
if (drawer.isDrawerOpen(GravityCompat.START)) {
drawer.closeDrawer(GravityCompat.START);
} else {
super.onBackPressed();
}
}
@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();
return super.onOptionsItemSelected(item);
}
@SuppressWarnings("StatementWithEmptyBody")
@Override
public boolean onNavigationItemSelected(MenuItem item) {
// Handle navigation view item clicks here.
int id = item.getItemId();
if (id == R.id.nav_camera) {
Intent myIntent = new Intent(MainActivity.this,Contact.class);
MainActivity.this.startActivity(myIntent);
} else if (id == R.id.nav_gallery) {
} else if (id == R.id.nav_slideshow) {
} else if (id == R.id.nav_manage) {
} else if (id == R.id.nav_share) {
} else if (id == R.id.nav_send) {
}
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
drawer.closeDrawer(GravityCompat.START);
return true;
}
// --- [End] Navigation Bar Action (it cannot be modified from here) ---
}
然后在MainActivity中扩展 -
public class MainActivity extends BaseActivity{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
FrameLayout containerParent = (FrameLayout) findViewById(R.id.container);
getLayoutInflater().inflate(R.layout.activity_main, containerParent);
contact_button = (Button) findViewById(R.id.contact_button);
}
}
您的BaseActivity XML应该是这样的 -
<DrawerLayout --->
<FrameLayout ---/>
<NavigationView-------/>
</DrawerLayout/>