fixed #276
This commit is contained in:
parent
e20842608b
commit
177e802a77
|
@ -183,6 +183,15 @@ public class ConversationFragment extends Fragment {
|
||||||
final View view = inflater.inflate(R.layout.fragment_conversation,
|
final View view = inflater.inflate(R.layout.fragment_conversation,
|
||||||
container, false);
|
container, false);
|
||||||
chatMsg = (EditText) view.findViewById(R.id.textinput);
|
chatMsg = (EditText) view.findViewById(R.id.textinput);
|
||||||
|
chatMsg.setOnClickListener(new OnClickListener() {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
if (activity.getSlidingPaneLayout().isSlideable()) {
|
||||||
|
activity.getSlidingPaneLayout().closePane();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
ImageButton sendButton = (ImageButton) view
|
ImageButton sendButton = (ImageButton) view
|
||||||
.findViewById(R.id.textSendButton);
|
.findViewById(R.id.textSendButton);
|
||||||
|
|
Loading…
Reference in New Issue