diff --git a/res/layout/conversation_activity.xml b/res/layout/conversation_activity.xml index cf53d232e4..c232b33760 100644 --- a/res/layout/conversation_activity.xml +++ b/res/layout/conversation_activity.xml @@ -108,7 +108,8 @@ android:src="?quick_camera_icon" android:background="@drawable/touch_highlight_background" android:contentDescription="@string/conversation_activity__quick_attachment_drawer_toggle_description" - android:padding="10dp"/> + android:visibility="gone" + android:padding="10dp" /> getItemList(Context context) { List data = new ArrayList<>(4); + addItem(data, context.getString(R.string.AttachmentTypeSelectorAdapter_take_photo), ResUtil.getDrawableRes(context, R.attr.conversation_attach_contact_info), TAKE_PHOTO); addItem(data, context.getString(R.string.AttachmentTypeSelectorAdapter_picture), ResUtil.getDrawableRes(context, R.attr.conversation_attach_image), ADD_IMAGE); addItem(data, context.getString(R.string.AttachmentTypeSelectorAdapter_video), ResUtil.getDrawableRes(context, R.attr.conversation_attach_video), ADD_VIDEO); addItem(data, context.getString(R.string.AttachmentTypeSelectorAdapter_audio), ResUtil.getDrawableRes(context, R.attr.conversation_attach_sound), ADD_SOUND);