- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在关注 this tutorial关于如何使用选项卡制作滑动 View 。我正在使用 Android Studio 1.2.2。
我的所有类都与示例代码中的类相同。当我运行该应用程序时,出现了 NullPointerException
并且应用程序崩溃了。在 Debug模式下,我发现 getActionBar()
返回 null。
经过一番研究,我发现了两个解决问题的办法:
setContentView
之前添加 getWindow().requestFeature(Window.FEATURE_ACTION_BAR);
Theme.AppCompat
主题因为我已经在使用 Theme.AppCompat
中的主题,所以我尝试了第一个解决方案,但它也没有用。然后我开始研究不同的主题,我发现应用程序正在使用 ThemeOverlay
中的主题,但如果我理解 this answer正确地,我不应该将 ThemeOverlay 用作一般的应用程序主题。
无论我是否应该将 ThemeOvarlay
用于一般主题,我都想让它与 Theme.AppCompat.Light
一起使用。
经过一些调试,我发现在Activity.java中的方法initWindowDecorActionBar
中,不知为什么第一行window.getDecorView();
执行的是方法中的最后一行。我不知道如何解释这种行为,我所知道的是 window.getDecorView();
的下一步将我带到方法的最后一行,mActionBar = 上的断点new WindowDecorActionBar(this);
不会中断执行。
private void initWindowDecorActionBar() {
Window window = getWindow();
// Initializing the window decor can change window feature flags.
// Make sure that we have the correct set before performing the test below.
window.getDecorView();
if (isChild() || !window.hasFeature(Window.FEATURE_ACTION_BAR) || mActionBar != null) {
return;
}
mActionBar = new WindowDecorActionBar(this);
mActionBar.setDefaultDisplayHomeAsUpEnabled(mEnableDefaultActionBarUp);
mWindow.setDefaultIcon(mActivityInfo.getIconResource());
mWindow.setDefaultLogo(mActivityInfo.getLogoResource());
}
有人遇到过这样的事情吗?如何让它与 Theme.AppCompat.Light
一起使用?
这是我的文件。
build.gradle
apply plugin: 'com.android.application'
apply plugin: 'com.neenbedankt.android-apt'
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
testHandleProfiling true
testFunctionalTest true
applicationId "com.test.swipe"
minSdkVersion 14
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
exclude 'META-INF/ASL2.0'
exclude 'META-INF/LICENSE'
exclude 'META-INF/license.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/notice.txt'
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.2.0'
... some other dependencies ...
}
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mammsoft.phanesmobile" >
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Theme.AppCompat.Light.DarkActionBar" >
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
MainActivity.java
package com.test.swipe;
import android.app.ActionBar;
import android.app.FragmentTransaction;
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;
import android.support.v4.view.ViewPager;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
public class MainActivity extends FragmentActivity implements ActionBar.TabListener {
AppSectionsPagerAdapter mAppSectionsPagerAdapter;
ViewPager mViewPager;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mAppSectionsPagerAdapter = new AppSectionsPagerAdapter(getSupportFragmentManager());
final ActionBar actionBar = getActionBar();
actionBar.setHomeButtonEnabled(false);
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
mViewPager = (ViewPager) findViewById(R.id.pager);
mViewPager.setAdapter(mAppSectionsPagerAdapter);
mViewPager.setOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener() {
@Override
public void onPageSelected(int position) {
actionBar.setSelectedNavigationItem(position);
}
});
for (int i = 0; i < mAppSectionsPagerAdapter.getCount(); i++) {
actionBar.addTab(
actionBar.newTab()
.setText(mAppSectionsPagerAdapter.getPageTitle(i))
.setTabListener(this));
}
}
@Override
public void onTabUnselected(ActionBar.Tab tab, FragmentTransaction fragmentTransaction) {
}
@Override
public void onTabSelected(ActionBar.Tab tab, FragmentTransaction fragmentTransaction) {
// When the given tab is selected, switch to the corresponding page in the ViewPager.
mViewPager.setCurrentItem(tab.getPosition());
}
@Override
public void onTabReselected(ActionBar.Tab tab, FragmentTransaction fragmentTransaction) {
}
public static class AppSectionsPagerAdapter extends FragmentPagerAdapter {
public AppSectionsPagerAdapter(FragmentManager fm) {
super(fm);
}
@Override
public Fragment getItem(int i) {
switch (i) {
case 0:
return new LaunchpadSectionFragment();
default:
Fragment fragment = new DummySectionFragment();
Bundle args = new Bundle();
args.putInt(DummySectionFragment.ARG_SECTION_NUMBER, i + 1);
fragment.setArguments(args);
return fragment;
}
}
@Override
public int getCount() {
return 3;
}
@Override
public CharSequence getPageTitle(int position) {
return "Section " + (position + 1);
}
}
public static class LaunchpadSectionFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_section_launchpad, container, false);
rootView.findViewById(R.id.demo_collection_button)
.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent(getActivity(), CollectionDemoActivity.class);
startActivity(intent);
}
});
rootView.findViewById(R.id.demo_external_activity)
.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent externalActivityIntent = new Intent(Intent.ACTION_PICK);
externalActivityIntent.setType("image/*");
externalActivityIntent.addFlags(
Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
startActivity(externalActivityIntent);
}
});
return rootView;
}
}
public static class DummySectionFragment extends Fragment {
public static final String ARG_SECTION_NUMBER = "section_number";
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_section_dummy, container, false);
Bundle args = getArguments();
((TextView) rootView.findViewById(android.R.id.text1)).setText(
getString(R.string.dummy_section_text, args.getInt(ARG_SECTION_NUMBER)));
return rootView;
}
}
}
最佳答案
更改您的 MainActivity 以扩展 AppCompatActivity 然后使用此代码获取您的操作栏:
final ActionBar actionBar = getSupportActionBar();
重构你的进口,你应该是黄金。
关于java - ActionBar 仅适用于 ThemeOverlay,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31742835/
我正在关注 this tutorial关于如何使用选项卡制作滑动 View 。我正在使用 Android Studio 1.2.2。 我的所有类都与示例代码中的类相同。当我运行该应用程序时,出现了 N
我将我的 android studio 更新到最新版本 - 3.0.1。从那时起,它在以下代码行中为 Theme 和 ThemeOverlay 提示“无法解析符号”。应用程序运行良好,但它们在文件中被
我受困于 ThemeOverlay.AppCompat.Dark.ActionBar。我需要一个带有白色文本的深色操作栏。 但这就是我得到的: 我有一个PreferenceActivity,我需要这个
有以下 Theme.AppCompat 类: Theme.AppCompat Theme.AppCompat.Light Theme.AppCompat.Light.DarkActionBar The
之前一切都很好,但现在当我重新打开我的 Android 项目时,在样式的值文件夹中,大部分父项目都以红色突出显示。我不明白为什么以及如何解决它。当我编译项目时它工作正常但我只想删除错误。下面是错误文件
嗨,我刚刚设计了一个带有弹出菜单的自定义小部件。这意味着默认情况下我必须扩展 AppCompatActivity 并被迫使用Theme.AppCompat.NoActionBar 或ThemeOver
尝试以下: 删除软件包 compat v7 并重新添加 清理 bin 和 obj 文件夹,重建。 与 2017 年相比已修复 添加了“android:”前缀但没有成功,已还原 添加了“@style”前
我是一名优秀的程序员,十分优秀!