9-Patch 图片制作
在AS 中右击图片,然后选择create 9-Patch file
,然后在图片当中,左边界和上边界是当图片伸展时所延申的部分,右边界和下边界是其中内容所填充的部分。
对于聊天中的气泡对话框,当然就需要使用9-Patch
文件了,我在这里也提供两个免抠素材:
绿色的:
↓
↑
这里还有一个白色的(右击,选择保存图片):
↓
↑
带气泡的对话框
添加依赖
既然是对话框,我们就可能用到RecyclerView
,使用RecyclerView
就要添加依赖,具体方法见:
Android >> 26. RecyclerView(一)
编辑对话框主页面
对话框除了各自的信息之外,当然最基本还要有文字输入框以及一个发送按钮:
<LinearLayoutxmlns:android&#61;"http://schemas.android.com/apk/res/android"xmlns:tools&#61;"http://schemas.android.com/tools"android:layout_width&#61;"match_parent"android:layout_height&#61;"match_parent"tools:context&#61;".Chatting_View"android:background&#61;"&#64;color/colorLittleGray"android:orientation&#61;"vertical"><androidx.recyclerview.widget.RecyclerViewandroid:id&#61;"&#64;&#43;id/msg_chatting_recycler_view"android:layout_width&#61;"match_parent"android:layout_height&#61;"wrap_content"android:layout_weight&#61;"1">androidx.recyclerview.widget.RecyclerView><LinearLayoutandroid:layout_width&#61;"match_parent"android:layout_height&#61;"wrap_content"><EditTextandroid:id&#61;"&#64;&#43;id/input_text"android:layout_width&#61;"0dp"android:layout_height&#61;"wrap_content"android:layout_weight&#61;"1"android:hint&#61;"Type something here"android:maxLines&#61;"2"tools:ignore&#61;"Suspicious0dp" /><Buttonandroid:id&#61;"&#64;&#43;id/send_button"android:layout_width&#61;"wrap_content"android:layout_height&#61;"wrap_content"android:text&#61;"Send"/>LinearLayout>
LinearLayout>
我们放置了一个RecyclerView
&#xff0c;然后在其下面放置一个文本输入框和一个发送按钮。
编辑RecyclerView 子项
有了对话框的整体布局之后&#xff0c;当然就要编辑一下每个RecyclerView
的消息子项
<LinearLayoutxmlns:android&#61;"http://schemas.android.com/apk/res/android"xmlns:tools&#61;"http://schemas.android.com/tools"android:orientation&#61;"vertical"android:layout_width&#61;"match_parent"android:layout_height&#61;"wrap_content"android:padding&#61;"10dp"><LinearLayoutandroid:id&#61;"&#64;&#43;id/left_layout"android:layout_width&#61;"wrap_content"android:layout_height&#61;"wrap_content"android:layout_gravity&#61;"left"android:background&#61;"&#64;drawable/left_white_msg"tools:ignore&#61;"RtlHardcoded"><TextViewandroid:id&#61;"&#64;&#43;id/left_msg"android:layout_width&#61;"wrap_content"android:layout_height&#61;"wrap_content"android:gravity&#61;"center"android:layout_margin&#61;"10dp"android:textColor&#61;"#000"/>LinearLayout><LinearLayoutandroid:id&#61;"&#64;&#43;id/right_layout"android:layout_width&#61;"wrap_content"android:layout_height&#61;"wrap_content"android:layout_gravity&#61;"right"android:background&#61;"&#64;drawable/right_green_msg"tools:ignore&#61;"RtlHardcoded"><TextViewandroid:id&#61;"&#64;&#43;id/right_msg"android:layout_width&#61;"wrap_content"android:layout_height&#61;"wrap_content"android:gravity&#61;"center"android:layout_margin&#61;"10dp"android:textColor&#61;"#000"/>LinearLayout>
LinearLayout>
&#xff08;在这里&#xff0c;为了美观&#xff0c;将接收和发送的消息分别设置为左对齐和右对齐&#xff09;
为了方便之后的消息类型判断以及显示&#xff0c;我们将一个接收消息框和一个发送消息框作为一个子项体&#xff0c;在后续我们可以通过判断消息是接收进来的还是发送出去的从而选择显示哪个消息&#xff08;setVisibility(View.VISIBLE)
&#xff09;&#xff0c;而将另一个消息的控件设置为setVisibility(View.GONE)
定义消息实体类
现在有了对话框的整体布局和每个Item
子项的布局之后&#xff0c;我们就要开始对Item
子项的性质进行设置了。
在Activity 中定义一个消息的类&#xff1a;
public class Msg{public static final int TYPE_RECEIVED &#61; 0;public static final int TYPE_SENT &#61; 1;private String content;private int type;public Msg(String content, int type){this.content &#61; content;this.type &#61; type;}public String getContent(){return content;}public int getType(){return type;}
}
Msg
类中只有两个字段&#xff0c;content
表示消息的内容&#xff0c;type
表示消息的类型&#xff08;TYPE_RECEIVED
或TYPE_SENT
&#xff09;
创建适配器类
用了RecyclerView&#xff0c;当然就还需要使用适配器了。
同样在Activity
的java
文件中
public static class MsgAdapter extends RecyclerView.Adapter<MsgAdapter.ViewHolder>{private List<Msg> mMsglist;static class ViewHolder extends RecyclerView.ViewHolder{LinearLayout leftLayout;LinearLayout rightLayout;TextView leftMsg;TextView rightMsg;public ViewHolder(View view){super(view);leftLayout &#61; view.findViewById(R.id.left_layout);rightLayout &#61; view.findViewById(R.id.right_layout);leftMsg &#61; view.findViewById(R.id.left_msg);rightMsg &#61; view.findViewById(R.id.right_msg);}}public MsgAdapter(List<Msg> msgList){mMsglist &#61; msgList;}&#64;NonNull&#64;Overridepublic ViewHolder onCreateViewHolder(&#64;NonNull ViewGroup parent, int viewType) {View view &#61; LayoutInflater.from(parent.getContext()).inflate(R.layout.msg_item, parent, false);return new ViewHolder(view);}&#64;Overridepublic void onBindViewHolder(&#64;NonNull ViewHolder holder, int position) {Msg msg &#61; mMsglist.get(position);if(msg.getType() &#61;&#61; Msg.TYPE_RECEIVED){holder.leftLayout.setVisibility(View.VISIBLE);holder.rightLayout.setVisibility(View.GONE);holder.leftMsg.setText(msg.getContent());} else if(msg.getType() &#61;&#61; Msg.TYPE_SENT){holder.leftLayout.setVisibility(View.GONE);holder.rightLayout.setVisibility(View.VISIBLE);holder.rightMsg.setText(msg.getContent());}}&#64;Overridepublic int getItemCount() {return mMsglist.size();}
}
使用RecyclerView
现在有了适配器了&#xff0c;可以使用这个RecyclerView
了
先声明
private List<Msg> msgList &#61; new ArrayList<>();
private EditText inputText;
private Button send;
private RecyclerView msgRecyclerView;
private MsgAdapter adapter;
最后在Activity
的onCreate()
方法中进行调用
&#64;Override
protected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_chatting__view);initMsgs();inputText &#61; findViewById(R.id.input_text);send &#61; findViewById(R.id.send_button);msgRecyclerView &#61; findViewById(R.id.msg_chatting_recycler_view);LinearLayoutManager layoutManager &#61; new LinearLayoutManager(this);msgRecyclerView.setLayoutManager(layoutManager);adapter &#61; new MsgAdapter(msgList);msgRecyclerView.setAdapter(adapter);send.setOnClickListener(new View.OnClickListener() {&#64;Overridepublic void onClick(View view) {String content &#61; inputText.getText().toString();if(!content.isEmpty()){Msg msg &#61; new Msg(content, Msg.TYPE_SENT);msgList.add(msg);adapter.notifyItemInserted(msgList.size() - 1);msgRecyclerView.scrollToPosition(msgList.size() - 1);inputText.setText("");}}});
}private void initMsgs(){Msg msg1 &#61; new Msg("Hello guy.", Msg.TYPE_RECEIVED);msgList.add(msg1);Msg msg2 &#61; new Msg("Who are you?", Msg.TYPE_SENT);msgList.add(msg2);Msg msg3 &#61; new Msg("I&#39;m Anonymous.", Msg.TYPE_RECEIVED);msgList.add(msg3);
}
我们先在initMsgs()
方法中初始化了几条信息用于显示。
然后配置RecyclerView
&#xff0c;添加点击事件。在点击事件中&#xff0c;我们为要发送出去的信息创建一个Msg
对象&#xff0c;然后添加进msgList
列表当中。之后调用适配器的notifyItemInserted()
方法用于通知列表有新的数据插入&#xff0c;这样新增的消息才能够在RecyclerView
中显示。接着调用RecyclerView 的scrollToPosition() 方法将显示的数据滚动到最后一行。最后将文本输入框清空。