无法使用 ActionBarActivity 在操作栏中创建选项卡
Cannot create tabs in action bar using ActionBarActivity
我绝对是 Android 的初学者。我即将创建带有选项卡的操作栏。但是我的 Android SDK 版本太低了。所以我尝试使用旧方法使用 ActionBarActivity 创建带有选项卡的操作栏。我也想知道新旧方法。现在我是这样做的。
我的activityclass
public class MainActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ActionBar bar = getSupportActionBar();
bar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
for(int i = 1;i<=3;i++){
ActionBar.Tab tab = bar.newTab();
tab.setText("Tab" + i);
bar.addTab(tab);
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, 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();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
Styles.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
</resources>
但是当我 运行 我的应用程序。这是抛出错误。我的代码有什么问题?
不要使用 ActionBarActivity
,因为它已被弃用。
并且您正在使用:
Theme.AppCompat.Light.DarkActionBar
与 : ActionBarActivity
在您的 java 代码中将其更改为 AppCompatActivity
(Activity
)。
这应该可以解决问题。当然,如果您使用 AppCompat
:
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbarmain);
setSupportActionBar(toolbar);
类似问题:
我绝对是 Android 的初学者。我即将创建带有选项卡的操作栏。但是我的 Android SDK 版本太低了。所以我尝试使用旧方法使用 ActionBarActivity 创建带有选项卡的操作栏。我也想知道新旧方法。现在我是这样做的。
我的activityclass
public class MainActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ActionBar bar = getSupportActionBar();
bar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
for(int i = 1;i<=3;i++){
ActionBar.Tab tab = bar.newTab();
tab.setText("Tab" + i);
bar.addTab(tab);
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, 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();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
Styles.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
</resources>
但是当我 运行 我的应用程序。这是抛出错误。我的代码有什么问题?
不要使用 ActionBarActivity
,因为它已被弃用。
并且您正在使用:
Theme.AppCompat.Light.DarkActionBar
与 : ActionBarActivity
在您的 java 代码中将其更改为 AppCompatActivity
(Activity
)。
这应该可以解决问题。当然,如果您使用 AppCompat
:
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbarmain);
setSupportActionBar(toolbar);
类似问题: