java - android.view.View.setVisibility(int) 使新 Activity 崩溃

标签 java android floating-action-button

所以最近我正在尝试实现一个 FAB,它将扩展到一个新的 Activity,但在按下 FAB 后它崩溃了。 此外,从这个问题中,我遵循了实现它的步骤: FloatingActionButton expand into a new activity

日志猫:

Process: com.example.jovie.canteen, PID: 6953
java.lang.NullPointerException: Attempt to invoke virtual method 'void android.view.View.setVisibility(int)' on a null object reference
    at com.example.jovie.canteen.Home$1$2.run(Home.java:105)
    at android.os.Handler.handleCallback(Handler.java:739)
    at android.os.Handler.dispatchMessage(Handler.java:95)
    at android.os.Looper.loop(Looper.java:148)
    at android.app.ActivityThread.main(ActivityThread.java:5417)
    at java.lang.reflect.Method.invoke(Native Method)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)

Home.java

public class Home extends AppCompatActivity
    implements NavigationView.OnNavigationItemSelectedListener {
CoordinatorLayout homeLayout;

private GoogleApiClient client;
private Toolbar toolbar;
private TabLayout tabLayout;
private ViewPager viewPager;
private RevealLayout mRevealLayout;

View mViewToReveal;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_home);
    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);

    homeLayout = (CoordinatorLayout) findViewById(R.id.CoordinatorLayout);
    setSupportActionBar(toolbar);

    toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);

    getSupportActionBar().setDisplayHomeAsUpEnabled(true);

    viewPager = (ViewPager) findViewById(R.id.viewpager);
    setupViewPager(viewPager);

    tabLayout = (TabLayout) findViewById(R.id.tabs);
    tabLayout.setupWithViewPager(viewPager);

    mRevealLayout = (RevealLayout) findViewById(R.id.reveal_layout);
    final View mRevealView=(View)
            findViewById(R.id.reveal_view);

     final FloatingActionButton mFab = (FloatingActionButton) findViewById(R.id.fab);
    mFab.setOnClickListener(new View.OnClickListener() {



        @Override
        public void onClick(View v) {
            mFab.setClickable(false); // Avoid naughty guys clicking FAB again and again...
            int[] location = new int[2];
            mFab.getLocationOnScreen(location);
            location[0] += mFab.getWidth() / 2;
            location[1] += mFab.getHeight() / 2;

            final Intent intent = new Intent(Home.this, SearchActivity.class);

            mRevealView.setVisibility(View.VISIBLE);
            mRevealLayout.setVisibility(View.VISIBLE);

            mRevealLayout.show(location[0], location[1]); // Expand from center of FAB. Actually, it just plays reveal animation.
            mFab.postDelayed(new Runnable() {
                @Override
                public void run() {
                    startActivity(intent);
                    /**
                     * Without using R.anim.hold, the screen will flash because of transition
                     * of Activities.
                     */
                    overridePendingTransition(0, R.anim.hold);
                }
            }, 600); // 600 is default duration of reveal animation in RevealLayout
            mFab.postDelayed(new Runnable() {
                @Override
                public void run() {
                    mFab.setClickable(true);
                    mRevealLayout.setVisibility(View.INVISIBLE);
                    mViewToReveal.setVisibility(View.INVISIBLE);
                }
            }, 960); // Or some numbers larger than 600.
        }
    });


    client = new GoogleApiClient.Builder(Home.this).addApi(AppIndex.API).build();

    DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
    ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
            this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
    drawer.setDrawerListener(toggle);
    toggle.syncState();

    NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
    navigationView.setNavigationItemSelectedListener(this);



}

activity_home.xml

<com.example.jovie.canteen.RevealLayout
    android:id="@+id/reveal_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:visibility="invisible">

    <View
        android:id="@+id/reveal_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:visibility="invisible"/>

</com.example.jovie.canteen.RevealLayout>

<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:fitsSystemWindows="true"
    app:headerLayout="@layout/nav_header_home"
    app:menu="@menu/activity_home_drawer"
    android:background="#ffffff" />

但是 android.view.View.setVisibility(int) 上为空指向 mViewToReveal.setVisibility(View.INVISIBLE);不确定我到底需要在哪里寻找,请帮忙。

最佳答案

因为你从未实例化过mViewToReveal

将其添加到onCreate

mViewToReveal = findViewById(R.id.reveal_view);

关于java - android.view.View.setVisibility(int) 使新 Activity 崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35611546/

相关文章:

android - 如何在Android中的edittext开头添加一个空格?

Android: float 操作按钮内的细节动画

java - 如何在 Java 中压缩 jpeg 图像而不丢失该图像中的任何元数据?

android - 滚动到 NestedScrollView 内的 recyclerview 中的位置?

java - 无法为论坛创建答案表?

安卓工作室 2.0 : Gradle DSL method not found: 'classpath()' error(27, 0)

android - FloatingActionButton 锚定在 View 顶部

Android,使用 android 支持设计的 FAB 在 API below 21 中是方形的

java - 如何修复错误膨胀类 android.support.design.widget.NavigationView

Java掷骰子游戏While循环随机数生成