我的老板最近向我建议我在我的应用程序中使用继承。我经常使用一种方法,但.this
类已更改。
这是我使用的基本代码:
public class CURRENTCLASS extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_CURRENTCLASS);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent(CURRENTCLASS.this, ActivityMenu.class);
startActivity(intent);
}
});
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);
}
@Override
public void onBackPressed() {
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
if (drawer.isDrawerOpen(GravityCompat.START)) {
drawer.closeDrawer(GravityCompat.START);
} else {
super.onBackPressed();
}
}
@SuppressWarnings("StatementWithEmptyBody")
@Override
public boolean onNavigationItemSelected(MenuItem item) {
int id = item.getItemId();
if (id == R.id.about) { //goes to Our company page
Intent intent = new Intent(CURRENTCLASS.this, ActivityAbout.class);
startActivity(intent);
}
else if (id == R.id.news) { // goes to News and events page
Intent intent = new Intent(CURRENTCLASS.this, ActivityNewsEvents.class);
startActivity(intent);
}
else if (id == R.id.serve) { // markets we serve
Intent intent = new Intent(CURRENTCLASS.this, ActivityMarkets.class);
startActivity(intent);
}
else if (id == R.id.seta) { //seta and aquisition support
Intent intent = new Intent(CURRENTCLASS.this, ActivitySETA.class);
startActivity(intent);
}
else if (id == R.id.software) { //software and systems dev
Intent intent = new Intent(CURRENTCLASS.this, ActivitySoftware.class);
startActivity(intent);
}
else if (id == R.id.training) { //intelligence analytics and training
Intent intent = new Intent(CURRENTCLASS.this, ActivityAnalytics.class);
startActivity(intent);
}
else if (id == R.id.QACSTUFF) { //QAC
Intent intent = new Intent(CURRENTCLASS.this, ActivityQAC.class);
startActivity(intent);
}
else if (id == R.id.careers) { //Careers
Intent intent = new Intent(CURRENTCLASS.this, ActivityCareers.class);
startActivity(intent);
}
else if (id == R.id.contactUs) { //Contact us
Intent intent = new Intent(CURRENTCLASS.this, ActivityContact.class);
startActivity(intent);
}
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
drawer.closeDrawer(GravityCompat.START);
return true;
}
}
我在我的大多数课程中使用它,我只是将CURRENTCLASS
更改为我复制到的任何类。所以,我的问题是,我可以将它作为一个继承的类,这样我可以使用这些方法而无需将它们复制/粘贴到每个类中吗?如果是这样,有没有人有关于如何做到这一点的资源/建议?
好的,澄清。 我的Android应用程序中有15个以上的类都有相同的基本代码,除了略有改动。在代码中,无论它在哪里" CURRENTCLASS"我会改变它来说" ActivityMain"或者" ActivityDevelopment"或任何活动。我想知道是否有更有效的方法来实现它,可能通过使用继承或在我的其他类中调用这些方法,而不必复制/粘贴所有这些代码。
答案 0 :(得分:1)
您可以创建BaseActivity
(您的活动的父类)并在您的所有活动中扩展此类,然后使用swith case创建一个方法,并在所有onNavigationItemSelected
方法中调用它
答案 1 :(得分:1)
因为这是你想要继承的整个课程,所以要回答Aj 27的答案。您可以将这些方法放在另一个类中并从中扩展,从而获得对其所有方法的访问权限,而无需始终复制和粘贴大量代码。
或者,如果您的活动非常简单,并且在功能方面也没有太大差异。你可以考虑片段。因此,您可以使用一个托管导航栏的MainActivity来创建许多片段。