Search code examples
androidlayoutchatreply

How does reply layout appears in android chat app?


I'm creating an android chat. In Telegram Android app, when I touch on reply, a layout appears and I want to how to do the same thing. I tried to the same with an extra constraint layout and make it visible or invisible when necessary.

enter image description here What is the best way to do this?


Solution

  • I achived this with add view. By adding constraint layout into Linearlayout. Anyone with better and best practice, please share your answer.

    LinearLayout item = findViewById(R.id.reply_layout);
    View child = getLayoutInflater().inflate(R.layout.reply_layout, null);
    item.addView(child);