- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
编辑:当我对此进行调试并尝试了各种更改时,我意识到我发布的原始代码并不真正相关,所以我删除了它:
我有一个 Activity
可以在 3 个不同的 Fragment
之间切换s 当用户按下 3 个 IconButton
之一时s 我已经在自定义布局中插入了 ActionBar,比如在各种模式之间切换:
当我第一次启动应用程序(已将其卸载)时,我默认为 Globe 模式。 Globe 模式在 ViewPager
中有几个 fragment , 这些 fragment 中的大多数是 android.support.v4.app.ListFragment
的子类.我在主 Activity 的 onCreate 方法中创建了所有 8 个选项卡。这按预期工作,一切正常加载。
当我进入“个人资料”模式(通过单击人脸图标按钮)时,我可以登录应用程序并查看我的个人资料。这也按预期工作,一切正常加载。
当我再次从 Android Studio 推送 APK 时,由于我现在已登录(保存的首选项),它默认我为“ friend 提要”模式(两个人手牵手)。我可以将模式切换到 Profile,一切都按预期工作,但是当我切换到 Globe 模式时,它在 Android 代码中崩溃:
08-14 14:43:22.744 28804-29323/com.trover E/AndroidRuntime﹕ FATAL EXCEPTION: main
Process: com.trover, PID: 28804
java.lang.NullPointerException
at android.widget.FrameLayout.onMeasure(FrameLayout.java:309)
at android.view.View.measure(View.java:16497)
at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:5125)
at com.android.internal.widget.ActionBarOverlayLayout.onMeasure(ActionBarOverlayLayout.java:327)
at android.view.View.measure(View.java:16497)
at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:5125)
at android.widget.FrameLayout.onMeasure(FrameLayout.java:310)
at com.android.internal.policy.impl.PhoneWindow$DecorView.onMeasure(PhoneWindow.java:2291)
at android.view.View.measure(View.java:16497)
at android.view.ViewRootImpl.performMeasure(ViewRootImpl.java:1912)
at android.view.ViewRootImpl.measureHierarchy(ViewRootImpl.java:1109)
at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:1291)
at android.view.ViewRootImpl.doTraversal(ViewRootImpl.java:996)
at android.view.ViewRootImpl$TraversalRunnable.run(ViewRootImpl.java:5600)
at android.view.Choreographer$CallbackRecord.run(Choreographer.java:761)
at android.view.Choreographer.doCallbacks(Choreographer.java:574)
at android.view.Choreographer.doFrame(Choreographer.java:544)
at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:747)
at android.os.Handler.handleCallback(Handler.java:733)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:136)
at android.app.ActivityThread.main(ActivityThread.java:5001)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:785)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:601)
at dalvik.system.NativeStart.main(Native Method)
if (mMeasureAllChildren || child.getVisibility() != GONE) {
child
是
null
,然而,调用
getChildCount()
在第 296 行返回值 2。我仍然不知道此时哪个 View 实际崩溃了,当我在调试器中浏览它们时,任何变量中都没有定义值。
IconButton
s 在上面,我调用 setBackgroundDrawable
在 IconButtons 上设置黄色突出显示(或设置 null
如果它不再是 Activity 按钮)。当我注释掉 onCreateOptionsMenu
中的两个代码时和 setHighlightedIconButton()
中的代码,崩溃不再发生 ViewPager
中删除所有 fragment 时,崩溃不再发生 inflater.inflate(R.layout.somelayout, null)
改为 inflater.inflate(R.layout.somelayout, viewGroupContainer, false)
,除非我在选项卡上创建自定义 View (我不知道 viewGroup 是它们的父级)。在这种情况下,我手动设置 LayoutParameters。 // We HAVE to read this value out before creating the layout, or onTabSelected will set it back to zero
final SharedPreferences prefs = getApplicationContext().getSharedPreferences(
Const.Preferences.PREFS_FILE, Context.MODE_PRIVATE);
boolean deniedLocationServices = prefs.getBoolean(Const.Preferences.LOCATION_SERVICES_DENIED, false);
int previousTab = prefs.getInt(Const.Preferences.PREVIOUS_TAB, 0);
setContentView(R.layout.main_browse);
mFragmentManager = getSupportFragmentManager();
mActionBar = getActionBar();
mActionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
// these three lines hide the 'Trover' logo
mActionBar.setDisplayHomeAsUpEnabled(false);
mActionBar.setDisplayUseLogoEnabled(false);
mActionBar.setIcon(new ColorDrawable(android.R.color.black));
mActionBar.setCustomView(R.layout.action_bar_icons);
mActionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM | ActionBar.DISPLAY_SHOW_HOME);
final int numTabs = 8;
TabbedBrowsePagerTab[] tabs = new TabbedBrowsePagerTab[numTabs];
tabs[mAllTabPosition] = buildAllTab();
tabs[mWhatsHotTabPosition] = buildWhatsHotTab();
tabs[mWhatsNewTabPosition] = buildWhatsNewTab();
tabs[mJumpToTabPosition] = buildJumpToTab();
tabs[mFoodTabPosition] = buildFoodTab();
tabs[mOutdoorTabPosition] = buildOutdoorTab();
tabs[mArtTabPosition] = buildArtTab();
tabs[mLatestTabPosition] = buildLatestTab();
mPagerAdapter = new TabbedBrowsePagerAdapter(this, tabs);
mViewPager = (ViewPager) findViewById(R.id.pager);
mViewPager.setAdapter(mPagerAdapter);
mViewPager.setOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener() {
@Override
public void onPageSelected(final int position) {
try {
mActionBar.setSelectedNavigationItem(position);
} catch (final IllegalStateException e) {
TroverApplication.logError(TAG, "IllegalArgumentsException setting tab position in PageChangeListener");
}
}
});
// Build the actual tabs on the actionbar
for (int i = 0; i < tabs.length; i++) {
mActionBar.addTab(mActionBar.newTab()
.setTabListener(this));
LayoutInflater inflater = LayoutInflater.from(this);
View customView = inflater.inflate(R.layout.custom_action_bar_tabs, null);
customView.setLayoutParams(new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
TextView tabCustom = (TextView) customView.findViewById(R.id.custom_action_bar_tab);
tabCustom.setText(tabs[i].getTabTitle());
tabCustom.setGravity(Gravity.CENTER_HORIZONTAL | Gravity.CENTER_VERTICAL);
tabCustom.setTypeface(TroverApplication.getDefaultFontBold());
mActionBar.getTabAt(i).setCustomView(tabCustom);
}
// Now set up the button listeners for those icons
mActionBar.getCustomView().findViewById(R.id.action_bar_friend_feed_button).setOnClickListener(this);
mActionBar.getCustomView().findViewById(R.id.action_bar_me_button).setOnClickListener(this);
mActionBar.getCustomView().findViewById(R.id.action_bar_nearby_button).setOnClickListener(this);
mViewPager.setCurrentItem(previousTab);
TroverLocationManager manger = TroverLocationManager.get();
if (!manger.isNetworkLocationEnabled() && !deniedLocationServices) {
showLocationServicesDialog();
}
if (AuthManager.get().isAuthenticated()) {
mCurrentMode = Mode.NEWS_MODE; // <----- if I change this to GLOBE_MODE it doesn't crash
} else {
mCurrentMode = Mode.GLOBE_MODE;
}
validateView();
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent"
android:layout_width="fill_parent" >
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<Button
android:id="@+id/main_camera_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_marginBottom="15dp"
android:layout_marginRight="15dp"
android:background="@drawable/camera_floating" />
</RelativeLayout>
private void setHighlightedIconButton() {
ImageButton button;
View iconContainer = mActionBar.getCustomView();
PaintDrawable selectedBackground = new PaintDrawable(getResources().getColor(R.color.trover_selected_icon_background));
button = (ImageButton) iconContainer.findViewById(R.id.action_bar_friend_feed_button);
if (mCurrentMode == Mode.NEWS_MODE) {
button.setBackgroundDrawable(selectedBackground);
button.setClickable(false);
} else {
button.setBackgroundDrawable(null);
button.setClickable(true);
}
button = (ImageButton) iconContainer.findViewById(R.id.action_bar_nearby_button);
if (mCurrentMode == Mode.GLOBE_MODE) {
button.setBackgroundDrawable(selectedBackground);
button.setClickable(false);
} else {
button.setBackgroundDrawable(null);
button.setClickable(true);
}
button = (ImageButton) iconContainer.findViewById(R.id.action_bar_me_button);
if (mCurrentMode == Mode.PROFILE_MODE) {
button.setBackgroundDrawable(selectedBackground);
button.setClickable(false);
} else {
button.setBackgroundDrawable(null);
button.setClickable(true);
}
}
/**
* Handles transitions between different fragments by checking the current mode and authentication state.
* This function can handle being called multiple times, and will always try to do the least work possible
* each time.
*/
private void validateView() {
invalidateOptionsMenu();
setHighlightedIconButton();
boolean authenticated = AuthManager.get().isAuthenticated();
switch(mCurrentMode) {
case GLOBE_MODE:
// Note - we don't record a screen here because the tabs will do that
removeMeFragment();
removeNewsFragment();
removeOnboardingFragment();
mViewPager.setVisibility(View.VISIBLE);
mActionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
mPagerAdapter.madeVisible();
break;
case NEWS_MODE:
if (mPreviousTabPosition == mJumpToTabPosition) {
InputMethodManager imm = (InputMethodManager) getSystemService(
Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(mViewPager.getWindowToken(), 0);
}
recordScreen(getCurrentModeTrackingString(), this);
removeMeFragment();
removeOnboardingFragment();
if (mNewsFeedFragment == null) {
mNewsFeedFragment = DiscoveryListFragment.newNewsFeedInstance();
mFragmentManager.beginTransaction().add(android.R.id.content, mNewsFeedFragment).commit();
}
mActionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_STANDARD);
mViewPager.setVisibility(View.GONE);
break;
case PROFILE_MODE:
if (mPreviousTabPosition == mJumpToTabPosition) {
InputMethodManager imm = (InputMethodManager) getSystemService(
Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(mViewPager.getWindowToken(), 0);
}
if (authenticated) {
recordScreen(getCurrentModeTrackingString(), this);
removeNewsFragment();
removeOnboardingFragment();
if (mProfileFragment == null) {
mProfileFragment = UserDetailFragment.newMeInstance();
mFragmentManager.beginTransaction().add(android.R.id.content, mProfileFragment).commit();
}
} else {
recordScreen(getCurrentModeTrackingString() + "/onboarding", this);
removeMeFragment();
removeNewsFragment();
if (mOnboardingFragment == null) {
removeOnboardingFragment();
mOnboardingFragment = new OnboardingFragment();
mFragmentManager.beginTransaction().add(android.R.id.content, mOnboardingFragment).commit();
}
}
mViewPager.setVisibility(View.GONE);
break;
default:
TroverApplication.logError(TAG, "Invalid mode!");
}
}
onCreateOptionsMenu
对于主要 Activity :
public boolean onCreateOptionsMenu(final Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.menu, menu);
if (!AuthManager.get().isAuthenticated()) {
MenuItem item = menu.findItem(R.id.menu_notifications);
if (item != null) {
item.setVisible(false);
}
item = menu.findItem(R.id.menu_recommended_users);
if (item != null) {
item.setVisible(false);
}
}
return true;
}
FrameLayout.onMeasure()
的一部分它是崩溃的 Android API 19 源代码的一部分的函数:
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int count = getChildCount(); <-- this is returning 2
final boolean measureMatchParentChildren =
MeasureSpec.getMode(widthMeasureSpec) != MeasureSpec.EXACTLY ||
MeasureSpec.getMode(heightMeasureSpec) != MeasureSpec.EXACTLY;
mMatchParentChildren.clear();
int maxHeight = 0;
int maxWidth = 0;
int childState = 0;
for (int i = 0; i < count; i++) {
final View child = getChildAt(i);
if (mMeasureAllChildren || child.getVisibility() != GONE) { <-- crash happens here
measureChildWithMargins(child, widthMeasureSpec, 0, heightMeasureSpec, 0);
final LayoutParams lp = (LayoutParams) child.getLayoutParams();
maxWidth = Math.max(maxWidth,
child.getMeasuredWidth() + lp.leftMargin + lp.rightMargin);
maxHeight = Math.max(maxHeight,
child.getMeasuredHeight() + lp.topMargin + lp.bottomMargin);
childState = combineMeasuredStates(childState, child.getMeasuredState());
if (measureMatchParentChildren) {
if (lp.width == LayoutParams.MATCH_PARENT ||
lp.height == LayoutParams.MATCH_PARENT) {
mMatchParentChildren.add(child);
}
}
}
}
最佳答案
View customView = inflater.inflate(R.layout.custom_action_bar_tabs, null);
null
,inflater 不知道要生成什么类型的 LayoutParams(它从父 ViewGroup 生成它们)。我相信这会生成默认的 ViewGroup.LayoutParams,但也许它根本不提供任何 LayoutParams。
View customView = inflater.inflate(R.layout.custom_action_bar_tabs, parent, false);
parent
是
customView
所在的 ViewGroup将被添加。如果您没有可用的父级,则可以手动设置一些自定义 LayoutParams:
View customView = inflater.inflate(R.layout.custom_action_bar_tabs, null);
customView.setLayoutParams(new ViewGroup.LayoutParams(
ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
关于android - FrameLayout.onMeasure() 中的 NullPointerException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25318191/
我想做的是让 JTextPane 在 JPanel 中占用尽可能多的空间。对于我使用的 UpdateInfoPanel: public class UpdateInfoPanel extends JP
我在 JPanel 中有一个 JTextArea,我想将其与 JScrollPane 一起使用。我正在使用 GridBagLayout。当我运行它时,框架似乎为 JScrollPane 腾出了空间,但
我想在 xcode 中实现以下功能。 我有一个 View Controller 。在这个 UIViewController 中,我有一个 UITabBar。它们下面是一个 UIView。将 UITab
有谁知道Firebird 2.5有没有类似于SQL中“STUFF”函数的功能? 我有一个包含父用户记录的表,另一个表包含与父相关的子用户记录。我希望能够提取用户拥有的“ROLES”的逗号分隔字符串,而
我想使用 JSON 作为 mirth channel 的输入和输出,例如详细信息保存在数据库中或创建 HL7 消息。 简而言之,输入为 JSON 解析它并输出为任何格式。 最佳答案 var objec
通常我会使用 R 并执行 merge.by,但这个文件似乎太大了,部门中的任何一台计算机都无法处理它! (任何从事遗传学工作的人的附加信息)本质上,插补似乎删除了 snp ID 的 rs 数字,我只剩
我有一个以前可能被问过的问题,但我很难找到正确的描述。我希望有人能帮助我。 在下面的代码中,我设置了varprice,我想添加javascript变量accu_id以通过rails在我的数据库中查找记
我有一个简单的 SVG 文件,在 Firefox 中可以正常查看 - 它的一些包装文本使用 foreignObject 包含一些 HTML - 文本包装在 div 中:
所以我正在为学校编写一个 Ruby 程序,如果某个值是 1 或 3,则将 bool 值更改为 true,如果是 0 或 2,则更改为 false。由于我有 Java 背景,所以我认为这段代码应该有效:
我做了什么: 我在这些账户之间创建了 VPC 对等连接 互联网网关也连接到每个 VPC 还配置了路由表(以允许来自双方的流量) 情况1: 当这两个 VPC 在同一个账户中时,我成功测试了从另一个 La
我有一个名为 contacts 的表: user_id contact_id 10294 10295 10294 10293 10293 10294 102
我正在使用 Magento 中的新模板。为避免重复代码,我想为每个产品预览使用相同的子模板。 特别是我做了这样一个展示: $products = Mage::getModel('catalog/pro
“for”是否总是检查协议(protocol)中定义的每个函数中第一个参数的类型? 编辑(改写): 当协议(protocol)方法只有一个参数时,根据该单个参数的类型(直接或任意)找到实现。当协议(p
我想从我的 PHP 代码中调用 JavaScript 函数。我通过使用以下方法实现了这一点: echo ' drawChart($id); '; 这工作正常,但我想从我的 PHP 代码中获取数据,我使
这个问题已经有答案了: Event binding on dynamically created elements? (23 个回答) 已关闭 5 年前。 我有一个动态表单,我想在其中附加一些其他 h
我正在尝试找到一种解决方案,以在 componentDidMount 中的映射项上使用 setState。 我正在使用 GraphQL连同 Gatsby返回许多 data 项目,但要求在特定的 pat
我在 ScrollView 中有一个 View 。只要用户按住该 View ,我想每 80 毫秒调用一次方法。这是我已经实现的: final Runnable vibrate = new Runnab
我用 jni 开发了一个 android 应用程序。我在 GetStringUTFChars 的 dvmDecodeIndirectRef 中得到了一个 dvmabort。我只中止了一次。 为什么会这
当我到达我的 Activity 时,我调用 FragmentPagerAdapter 来处理我的不同选项卡。在我的一个选项卡中,我想显示一个 RecyclerView,但他从未出现过,有了断点,我看到
当我按下 Activity 中的按钮时,会弹出一个 DialogFragment。在对话框 fragment 中,有一个看起来像普通 ListView 的 RecyclerView。 我想要的行为是当
我是一名优秀的程序员,十分优秀!