活动在OnClick之后关闭

时间:2019-05-15 21:07:40

标签: java android

所以我正在使用Viewpager,其中有3个片段。我为发送邮件制作了一个片段,但是我有一个问题,因为单击按钮发送邮件后,它就关闭了。

已发送消息并更新了数据库,但是该片段每次都关闭,并将我发送到Viewpager中的第一个片段。

因此,我接下来要做的是从Viewpager中删除消息片段,然后放一个按钮,将我带到了一个旨在发送消息的活动中。

问题在于,即使一切正常,发送消息后,活动也会关闭,并带我到具有viewpager的Activity。

我从Viewpager中删除了该片段,并尝试将其放入活动中,以查看问题是否出在片段上,因为我从未真正使用过片段。

我的“聊天活动”

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(this);
    title = preferences.getString("Titulo", "Sin titulo");

    setContentView(R.layout.activity_chat_grupo);
    mToolbar = findViewById(R.id.toolbar);
    setSupportActionBar(mToolbar);
    getSupportActionBar().setTitle("Chat");
    mToolbar.setTitleTextColor(Color.WHITE);
    getSupportActionBar().setDisplayHomeAsUpEnabled(true);

    mAuth = FirebaseAuth.getInstance();
    mCurrent_user_id = mAuth.getCurrentUser().getDisplayName();
    mPics = FirebaseDatabase.getInstance().getReference().child("Users").child(mCurrent_user_id).child("imagen");
    messages = findViewById(R.id.list_of_messages);
    input = (EditText) findViewById(R.id.input);

    fab = (FloatingActionButton) findViewById(R.id.fab);
    fab.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            Calendar c = Calendar.getInstance();
            SimpleDateFormat fecha = new SimpleDateFormat("dd-MM    (HH:mm:ss)");
            final String fecha_d = fecha.format(c.getTime());
            mPics.addValueEventListener(new ValueEventListener() {
                @Override
                public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
                    url = dataSnapshot.getValue().toString();
                    Log.d("PHOTOURL", url);

                    FirebaseDatabase.getInstance().getReference().child("grupos").child(title).child("chat")
                            .push()
                            .setValue(new ChatGrupoAdapter(input.getText().toString(),
                                    mCurrent_user_id, fecha_d, url)).addOnSuccessListener(new OnSuccessListener<Void>() {
                        @Override
                        public void onSuccess(Void aVoid) {

                        }
                    });
                    input.setText("");

                }

                @Override
                public void onCancelled(@NonNull DatabaseError databaseError) {

                }
            });
        }
    });

    adapter = new FirebaseListAdapter<ChatGrupoAdapter>(ChatGrupo.this, ChatGrupoAdapter.class,
            R.layout.message, FirebaseDatabase.getInstance().getReference().child("grupos").child(title).child("chat")) {
        @Override
        protected void populateView(View v, ChatGrupoAdapter model, int position) {
            TextView messageText = (TextView) v.findViewById(R.id.message_text);
            TextView messageUser = (TextView) v.findViewById(R.id.message_user);
            TextView messageTime = (TextView) v.findViewById(R.id.message_time);

            CircleImageView messageUserpic = v.findViewById(R.id.user_image);
            messageText.setText(model.getMensaje());
            messageUser.setText(model.getUsuario());
            Picasso.get().load(model.getUserphoto()).into(messageUserpic);
            messageTime.setText(model.getMessageTime());

        }
    };
    messages.setAdapter(adapter);

}

@Override
public boolean onSupportNavigateUp() {
    onBackPressed();
    return true;
}
在列表视图中显示新消息后,

/// logcat。

05-15 20:39:24.418 26610-26610/com.example.danny.trendy_reads D/Picasso: Main        created      [R51] Request{https://firebasestorage.googleapis.com/v0/b/trendyreads-658db.appspot.com/o/Imagenes%2Fvanessa.jpg%2Fcropped3415433131357908162.jpg?alt=media&token}
05-15 20:39:24.427 26610-26610/com.example.danny.trendy_reads D/Picasso: Main        completed    [R51] from MEMORY
05-15 20:39:24.429 26610-26610/com.example.danny.trendy_reads W/IInputConnectionWrapper: beginBatchEdit on inactive InputConnection
    endBatchEdit on inactive InputConnection
05-15 20:39:24.430 26610-26610/com.example.danny.trendy_reads W/IInputConnectionWrapper: beginBatchEdit on inactive InputConnection
    endBatchEdit on inactive InputConnection
05-15 20:39:24.483 26610-26610/com.example.danny.trendy_reads W/IInputConnectionWrapper: getTextBeforeCursor on inactive InputConnection
05-15 20:39:24.540 26610-26610/com.example.danny.trendy_reads W/IInputConnectionWrapper: getSelectedText on inactive InputConnection
05-15 20:39:24.546 26610-26610/com.example.danny.trendy_reads W/IInputConnectionWrapper: getTextAfterCursor on inactive InputConnection
05-15 20:39:24.572 26610-26610/com.example.danny.trendy_reads W/IInputConnectionWrapper: beginBatchEdit on inactive InputConnection
    endBatchEdit on inactive InputConnection
05-15 20:39:29.186 26610-26696/com.example.danny.trendy_reads V/FA: Inactivity, disconnecting from the service
05-15 20:39:46.519 26610-28425/com.example.danny.trendy_reads E/StudioProfiler: JVMTI error: 15(JVMTI_ERROR_THREAD_NOT_ALIVE) 
05-15 20:39:46.519 26610-28425/com.example.danny.trendy_reads I/chatty: uid=10158(com.example.danny.trendy_reads) Binder:26610_5 identical 3 lines
05-15 20:39:46.519 26610-28425/com.example.danny.trendy_reads E/StudioProfiler: JVMTI error: 15(JVMTI_ERROR_THREAD_NOT_ALIVE) 

2 个答案:

答案 0 :(得分:1)

尝试了所有事情之后,我发现添加“ android:launchMode =“ singleInstance”解决了我的问题。(在清单中)

我也将列表更改为RecyclerView,它对我没有任何帮助。 我有另一项活动具有完全相同的方法,并且无论如何这都不会发生。

答案 1 :(得分:0)

JVMTI 是调试和概要分析协议。因此,我想这是您尝试在其中运行应用程序的环境所特有的。

尝试执行文件 ---> 使缓存无效 / 重新启动,这可能会对您有所帮助。