Android06-點九圖的使用,聊天視窗的搭建
Nine_Patch圖片:一種被特殊處理過的圖片,能夠制定哪些區域可以被拉伸,哪些區域不可以
- 在Android Studio中使用.9圖很簡單:直接將圖片名稱以”.9.png”結束。
使用.9圖必須注意一點:檔案的字尾名必須是.9.png,不能是.png或者是.9.png.png,這樣的命名都會導致編譯失敗。- 命名完成後雙擊圖片即可進行編輯
第一步:建立專案匯入圖片
第二步:建立介面佈局檔案
注:這裡因為用到RecyclerView所以要先天際啊RecyclerView相關庫的依賴。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#d8e0e8"
>
<android.support.v7.widget.RecyclerView
android:id="@+id/msg_recycler_view"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
</android.support.v7.widget.RecyclerView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/input_text"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_marginBottom="0dp"
android:hint="請輸入資訊"
android:maxLines="2"/>
<Button
android:id="@+id/send"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Send"/>
</LinearLayout>
</LinearLayout>
第三步:建立資訊視窗布局檔案
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp">
<LinearLayout
android:id="@+id/left_layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:background="@drawable/message_left">
<TextView
android:id="@+id/left_msg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="10dp"
android:textColor="#fff"/>
</LinearLayout>
<LinearLayout
android:id="@+id/right_layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:background="@drawable/message_right">
<TextView
android:id="@+id/right_msg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="10dp" />
</LinearLayout>
</LinearLayout>
第四步:建立資訊實體類
package com.example.anwser_mac.uibestpractice;
/**
* Created by anwser_mac on 2017/4/1.
*/
public class Msg {
public static final int TYPE_RECEIVED = 0;
public static final int TYPE_SENT = 1;
private String content;
private int type;
public Msg(String content, int type) {
this.content = content;
this.type = type;
}
public String getContent() {
return content;
}
public int getType() {
return type;
}
}
第五步:自定義RecyclerView介面卡
package com.example.anwser_mac.uibestpractice;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.LinearLayout;
import android.widget.TextView;
import java.util.List;
/**
* Created by anwser_mac on 2017/4/1.
*/
public class MsgAdapter extends RecyclerView.Adapter<MsgAdapter.Viewholder> {
private List<Msg> mMsgList;
static class Viewholder extends RecyclerView.ViewHolder {
android.widget.LinearLayout leftLayout;
android.widget.LinearLayout rightLayout;
TextView leftMsg;
TextView rightMsg;
public Viewholder(View view) {
super(view);
leftLayout = (LinearLayout) view.findViewById(R.id.left_layout);
rightLayout = (LinearLayout) view.findViewById(R.id.right_layout);
leftMsg = (TextView) view.findViewById(R.id.left_msg);
rightMsg = (TextView) view.findViewById(R.id.right_msg);
}
}
public MsgAdapter(List<Msg> msgList) {
mMsgList = msgList;
}
@Override
public MsgAdapter.Viewholder onCreateViewHolder(ViewGroup parent, int viewType) {
View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.msg_item,parent,false);
return new Viewholder(view);
}
@Override
public void onBindViewHolder(MsgAdapter.Viewholder holder, int position) {
Msg msg = mMsgList.get(position);
if (msg.getType() == Msg.TYPE_RECEIVED) {
//如果是收到的訊息,則顯示在左邊的訊息佈局,將右邊的訊息佈局隱藏
holder.leftLayout.setVisibility(View.VISIBLE);
holder.rightLayout.setVisibility(View.GONE);
holder.leftMsg.setText(msg.getContent());
} else if(msg.getType() == Msg.TYPE_SENT) {
//如果是發出的訊息,則顯示在右邊的訊息佈局,將左邊的訊息佈局隱藏
holder.rightLayout.setVisibility(View.VISIBLE);
holder.leftLayout.setVisibility(View.GONE);
holder.rightMsg.setText(msg.getContent());
}
}
@Override
public int getItemCount() {
return mMsgList.size();
}
}
第六步:載入資料
package com.example.anwser_mac.uibestpractice;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import java.util.ArrayList;
import java.util.List;
public class MainActivity extends AppCompatActivity {
private List<Msg> msgList = new ArrayList<>();
private EditText inputText;
private Button send;
private RecyclerView msgRecyclerView;
private MsgAdapter adapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.layout);
//初始化訊息資料
initMsgs();
inputText = (EditText) findViewById(R.id.input_text);
send = (Button) findViewById(R.id.send);
msgRecyclerView = (RecyclerView) findViewById(R.id.msg_recycler_view);
LinearLayoutManager layoutManager = new LinearLayoutManager(this);
msgRecyclerView.setLayoutManager(layoutManager);
adapter = new MsgAdapter(msgList);
msgRecyclerView.setAdapter(adapter);
send.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String content = inputText.getText().toString();
if (!"".equals(content)) {
Msg msg = 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 = new Msg("很高興認識你", Msg.TYPE_RECEIVED);
msgList.add(msg1);
Msg msg2 = new Msg("你高興得太早了", Msg.TYPE_SENT);
msgList.add(msg2);
Msg msg3 = new Msg("你醜開", Msg.TYPE_RECEIVED);
msgList.add(msg3);
}
}
相關文章
- Path 實現點九圖效果 (聊天背景)
- Qt TCP (小型聊天視窗)QTTCP
- plsql developer 視窗的使用SQLDeveloper
- vscode原始碼分析【九】視窗裡的主要元素VSCode原始碼
- ArcGIS API for Silverlight 點選地圖上的要素,彈出視窗(使用Telerik RadWindow)API地圖
- 使用Windows API進行GDI視窗繪圖WindowsAPI繪圖
- Mac下給視窗截圖的快捷鍵Mac
- QT中 視窗部件的 背景圖片 的設定QT
- 在列印視窗,列印檢視View的子檢視結構圖View
- <轉>“您檢視的網頁正在試圖關閉視窗。是否關閉此視窗”的遮蔽方法(JavaScript)網頁JavaScript
- 點選彈出帶有遮罩的視窗效果遮罩
- JS彈出視窗視窗的位置和大小JS
- MySQL視窗函式的具體使用TOCSMySql函式
- 使用DLL檔案中封裝的視窗 (轉)封裝
- .NET 視窗/螢幕截圖
- 新增元件的視窗元件
- 視窗程式的框架框架
- 超實用的jQuery百葉窗焦點圖動畫jQuery動畫
- hive視窗函式使用Hive函式
- jQuery實現的點選彈出登陸視窗效果jQuery
- PyQt5 帶視窗圖示QT
- 人工設定視窗圖示 (轉)
- 怎麼去掉Mac視窗截圖自帶的陰影?Mac
- 如何修改CAD夢想畫圖繪圖視窗的背景顏色繪圖
- 非常漂亮的CSS3百葉窗焦點圖動畫CSSS3動畫
- 盤點你不知道的智慧電視/盒子的九大功效!
- mysql視窗函式中的滑動視窗MySql函式
- 新增選單的視窗
- Qt 子視窗 隱藏標題欄的圖示,隱藏在工作列上的圖示QT
- 在不把視窗設定成當前視窗的條件下,對視窗進行操作。
- js實現的點選彈出確認視窗程式碼JS
- 非視窗類中使用定時器的方法 (轉)定時器
- 基於Vue的點對點聊天專案Vue
- win10切換視窗的快捷鍵是什麼_win10如何使用切換視窗的快捷鍵Win10
- Qt的視窗背景及視窗風格統一與煥膚QT
- dotnet 如何從 Gtk 3 的視窗到對應的 X11 視窗
- 【教程】使用gitee搭建免費的圖床Gitee圖床
- 躺平吧,平鋪的視窗「GitHub 熱點速覽 v.21.47」Github