- 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/
我正在尝试使用 RelativeLayout 扩充 FrameLayout。然后我像这样扩展一个 FrameLayout: public class Keyboard extends FrameLay
在我的应用程序中,我有一个布局,它有一个 RelativeLayout 我想在运行时以编程方式设置边距。但是当我这样做时,它给了我 ClassCastException 说 FrameLayout 不
我在横向模式下的 FrameLayout 中打开 android Camera,然后屏幕看起来像- 但是当我在 FrameLayout 中的 ImageView 中打开相同的图像时,它看起来像 - 请
我在画廊中使用了 FrameLayout 作为画廊项目。 FrameLayout 中有 2 个 RelativeLayouts,每个都有一些 TextView 和一个 ImageView。图库外有一个
我目前正在使用 xml 为 Activity 创建布局,内容 (FrameLayout) 应该填满整个屏幕。不幸的是,事实并非如此。只有当我将边距更改为以下时,它才有效: 左:-17dp 右:-19d
我有一个 View (假设它是 MyFramLayout)扩展了 FrameLayout,我无法在按下键时让这个 FrameLayout 获得焦点(我在电视平台上工作)。 布局是这样的:
我正在尝试设置一个平板电脑布局,左侧是一个列表,右侧是一个详细信息 Pane 。单击列表项时,详细信息 Pane 将填充一系列比左侧列表更长的卡片。我希望详细信息 Pane 和列表(回收站 View
我用按钮创建了一个布局,这个按钮有逻辑,我不想集成它。 所以我认为: 当我有按钮时,我需要添加一个 char $,所以我创建了一个 frameLayout 并在此处添加了一个 TextView,我这样
我正在使用 FrameLayouts 在图像上重叠图像,但在这种特殊情况下我无法理解我的内部 FrameLayout 没有显示在另一幅图像的前面。这是理论: 这是实际的事情: 这是我的 XML:
在 FrameLayout 中,我动态添加了一个 WebView,用于在旋转屏幕时保存内容,但事实并非如此,情况是在 FrameLayout 下面我想放置一个固定的页脚。下一个代码放置页脚,但 Fra
我在加载 fragment Activity 时意外收到空指针异常错误。我指的是 FrameLayout 将用户定向到另一个 Activity (在单击按钮时)。 11-10 07:31:58.773
我想测试使用 fragment 管理器动态替换 fragment 。在主布局中,在父衬里布局下,我有 3 个布局,一个子线性布局和 2 个子框架布局。这个想法是在第一个子线性布局中使用一个按钮来交换第
我正在开发 Android 即时聊天应用程序。在聊天 Activity 中,我正在使用 FrameLayout。以下是 xml 文件: 我已将框架的可见性设置为
这是有效的: a) main.xml 中带有两个 ImageView 的 FrameLayout b) 在背景上旋转动画,而前景部分保持不变 因为我需要对背景图像做更多的工作,
我有以下问题:我有很长的 ListView,但是当我向上滚动时会触发 onRefresh,而不是先滚动回顶部。我该如何解决这个问题? 我将以下 fragment 插入到 FrameLay
我有一个 FrameLayout,上面显示了一个 LinearLayout我的 Intent 是这个 LinearLayout 总是占据屏幕的 33%……但我做不到。我尝试使用“dp”,但当然,结果因
是否有一种布局,其中的项目可以像 Android 的 FrameLayout 一样分层放置? 我已经在谷歌上搜索了一段时间,但找不到类似的东西。 最佳答案 我希望这个答案很清楚并且可以帮助您。您需要的
我是第一次使用 NavigationBar 小部件,我无法将 FrameLayout 设置为不在 NavigationBar 后面。我已经尝试了一切:在 RelativeLayout 中设置(Navi
我有以下 View 层次结构: 我尝试设置 ImageView 的下边距,在布局编辑器上它似乎工作正常,但是当我运行代码时,我设置的下边距被丢弃了。
我有这样的布局: 相对布局 框架布局 fragment (谷歌地图图层) 复选框 ...其他按钮和东西 现在我想在选中 Checkbox 时捕获 FrameLayout 上的触摸事件。我用 dispa
我是一名优秀的程序员,十分优秀!