- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我的应用中出现此错误,原因不明。没有一行与我的代码相关,我真的不知道问题出在哪里以及如何解决。
E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.afranet.salesportal, PID: 20933
java.lang.NullPointerException: Attempt to invoke virtual method 'float android.view.MotionEvent.getX()' on a null object reference
at android.view.View.onTouchEvent(View.java:10608)
at android.support.design.widget.CoordinatorLayout.onTouchEvent(CoordinatorLayout.java:449)
at android.view.View.dispatchTouchEvent(View.java:9187)
at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2644)
at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:2351)
at android.support.v4.widget.DrawerLayout.cancelChildViewTouch(DrawerLayout.java:1668)
at android.support.v4.widget.DrawerLayout$ViewDragCallback.peekDrawer(DrawerLayout.java:1916)
at android.support.v4.widget.DrawerLayout$ViewDragCallback.access$000(DrawerLayout.java:1801)
at android.support.v4.widget.DrawerLayout$ViewDragCallback$1.run(DrawerLayout.java:1807)
at android.os.Handler.handleCallback(Handler.java:739)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:145)
at android.app.ActivityThread.main(ActivityThread.java:6917)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1404)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1199)
这是我的布局:
activity_home.xml:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorLightGrayBackground"
android:layoutDirection="rtl"
tools:openDrawer="start">
<include
layout="@layout/app_bar_home"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@color/colorNavbarBackground"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_home"
app:itemIconTint="@drawable/navigation_icon_color"
app:itemTextColor="@drawable/navigation_icon_color"
app:menu="@menu/activity_home_drawer" />
</android.support.v4.widget.DrawerLayout>
app_bar_home.xml:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".activity.HomeActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:minHeight="?attr/actionBarSize">
<TextView
android:id="@+id/toolbar_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:text="" />
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
<include
layout="@layout/content_home"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="?attr/actionBarSize" />
<!--android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/ic_dialog_email"
android:visibility="gone" / !-->
</android.support.design.widget.CoordinatorLayout>
content_home.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/appbar"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".activity.HomeActivity"
tools:showIn="@layout/app_bar_home">
</RelativeLayout>
onTouchEvent
方法中的 CoordinatorLayout
代码似乎有问题。
最佳答案
好像是a bug in Support Library com.android.support:design:23.0.0
。我找到了解决问题的答案。
1- 更新支持库会自动解决问题。
2- 覆盖 Activity 中的 dispatchTouchEvent
方法将解决问题:
@Override
public boolean dispatchTouchEvent(MotionEvent ev) {
try {
return super.dispatchTouchEvent(ev);
} catch (Exception e) {
return false;
}
}
3- This answer也不错 :
ViewGroup appBarLayout = (ViewGroup) ret.findViewById(R.id.appbarlayout);
for (int i = 0; i < appBarLayout.getChildCount(); i++) {
View childView = appBarLayout.getChildAt(i);
if (!childView.isClickable()) {
childView.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent motionEvent) {
return true;
}
});
}
}
关于android - CoordinatorLayout 中的 NullPointerException onTouchEvent,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37693974/
我有一个自定义布局捏缩放代码作为父布局和一个处理点击功能的子布局。因此我使用了触摸拦截,但问题是它不知道什么时候点击或拖动。 @Override public boolean onInter
我正在制作一个简单逻辑电路的单屏应用程序。我正在使用 onTouchEvent 来处理用户交互。我现在正在使用 ACTION_UP、ACTION_MOVE 和 ACTION_DOWN,但这只允许我使用
我为 Android 创建了一个非常简单的乒乓应用程序。 看起来不错,但我有一个问题: 我尝试执行 onScreenTouch 事件,以便将 Racket 放置在用户的触摸位置。 我的问题是 - 在哪
我目前正在开发我的第一个多点触控 Android 应用程序,但在使用 onTouchEvent() 时遇到了一些困难。我使用了在线教程中的一些代码,这似乎为我提供了屏幕上每次触摸的正确指针 ID 信息
以下:https://developer.android.com/training/gestures/movement.html 用于处理onTouchEvent中的移动。我的问题是,即使按照链接的教
除了public class MySurfaceView extends SurfaceView Implements SurfaceHolder.Callback之外,是否可以在类中创建 OnTou
我正在尝试创建一个子类来扩展和覆盖 onTouchEvent 方法。但是,我无法这样做,因为我不完全确定如何去做。 我可以将重写放在扩展 Activity 的公共(public)类中,还是必须是扩展
My full code here 我正在学习 Android 开发,并且正在尝试创建一个简单的单词搜索游戏。首先,我创建了一个 LetterTile 类,它代表屏幕上的一个字母,这个类有自己绘制的方
我有简单的 Activity : public class MainActivity extends Activity { @Override protected void onCre
我有一个 View v2 扩展了另一个 View v1。父 View v1 有一个 onTouchEvent,但我希望 subview v2 不使用 onTouchEvent。 我在 subview
我在 Android Dialog 中实现了按钮的 onLongClickListener,它使用计时器自动减少数字。这是代码 myIncreaseTimer = new Timer(); final
当我运行下面的代码时,一切正常,这是一个简单的应用程序,带有三个可以移动的球... public class dragndrop extends Activity { /** Called w
我正在使用 MapView 创建 Android 应用程序。我需要对用户的触摸事件使用react。我尝试使用 dispatchTouchEvent 在 onTouchEvent 中处理一些操作。但是这
我的第一个布局没有显示任何内容。它上面有一个显示图像的第二个布局。如何将 onTouchEvent 添加到第二个布局?(我问这个是因为 OnTouchEvent 只影响我的第一个布局......)它是
我正在开发 Android 2.1 API 7 应用。 在我的 Activity 中,我添加了 onTouchEvent() 回调来处理 screen touch 事件: public class M
谁能向我解释为什么 onTouchEvent 执行了两次,我怎样才能将它设置为只运行一次?我找不到解释。谢谢。 @Override public void onCreate(Bundle savedI
在我的应用程序中,我需要同时处理移动和点击事件。 点击是一个 ACTION_DOWN Action 、几个 ACTION_MOVE Action 和一个 ACTION_UP Action 的序列。理论
我正在尝试触摸应用程序的区域以在屏幕上放置一个“与”门。因此,当我触摸与门区域,然后再次触摸将其放置在电路上时,门会在我触摸的位置绘制,但一旦我再次触摸,它就会消失。 我使用canvas.drawBi
我有 GraphicView ,它扩展了 SurfaceView 。我需要它来绘制图形。我还需要 onTouchEvent。但问题是......我不知道如何描述它:)这是我的代码: public cl
我正在创建一个 Android 游戏,并且有一个像这样的 onTouchEvent : @Override public boolean onTouchEvent(MotionEvent event
我是一名优秀的程序员,十分优秀!