admin
2021-04-20 e08fb55566539c5b0c489ab6f4b565454e2ae375
BuWanVideo/src/com/weikou/beibeivideo/ui/recommend/SearchActivity.java
@@ -95,8 +95,7 @@
    private boolean touchSearchInput = false;
    //赚影视豆
    private Runnable makeGoldCornRunnable;
    private void initView() {
        fl_advertisement = findViewById(R.id.fl_advertisement);
@@ -481,8 +480,7 @@
                                }
                            });
                        }
                        //挣影视豆
                        makeGoldCornRunnable = GoldCornUtil.makeGoldCorn(getIntent(), et_search_key, null, null, 2, null);
                    }
                });
            }
@@ -529,6 +527,10 @@
        Intent intent = new Intent(SearchActivity.this,
                SearchResultActivity.class);
        intent.putExtra("key", key);
        if (getIntent() != null) {
            intent.putExtra("goldcorn", getIntent().getStringExtra("goldcorn"));
            getIntent().removeExtra("goldcorn");
        }
        startActivity(intent);
    }
@@ -616,6 +618,6 @@
    @Override
    protected void onDestroy() {
        super.onDestroy();
        GoldCornUtil.removeCallbacks(et_search_key, makeGoldCornRunnable);
    }
}