Android 는 RecyclerView 를 이용 하여 채 팅 창 을 작성 합 니 다.

본 논문 의 사례 는 안 드 로 이 드 RecyclerView 가 채 팅 인터페이스 를 작성 하 는 구체 적 인 코드 를 공유 하여 여러분 에 게 참고 하 실 수 있 습 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.
1.잠시 후에 RecyclerView 를 사용 할 것 입 니 다.먼저 app/build.gradle(build.gradle 두 개 를 주의 하고 app 아래 에 있 는 것 을 선택 하 십시오)에 의존 라 이브 러 리 를 추가 합 니 다.다음 과 같 습 니 다.

dependencies {
 compile fileTree(dir: 'libs', include: ['*.jar'])
 compile 'com.android.support:appcompat-v7:24.2.1'
 compile 'com.android.support:recyclerview-v7:24.2.1'
 testCompile 'junit:junit:4.12'
 androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  exclude group: 'com.android.support', module: 'support-annotations'
 })
}
추가 가 끝 난 후에 Sync Now 를 누 르 면 동기 화 되 는 것 을 기억 하 세 요.
2、메 인 화면 작성 시작,activity 수정main.xml 의 코드 는 다음 과 같 습 니 다.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@+id/activity_main"
 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"
  />
 <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:hint="Type something here"
   android:maxLines="2"
   />
  <Button
   android:id="@+id/send"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="send"
   />
 </LinearLayout>
</LinearLayout>

RecyclerView 는 채 팅 의 메시지 내용 을 표시 하 는 데 사 용 됩 니 다(시스템 SDK 에 내 장 된 것 이 아니 기 때문에 완전한 패키지 경 로 를 써 야 합 니 다).
메 시 지 를 입력 하 는 데 사용 할 EditView 를 설치 하고 메 시 지 를 보 내 는 데 사용 할 단추 입 니 다.
3.메시지 의 실체 클래스 를 정의 하고 새 Msg 를 만 듭 니 다.코드 는 다음 과 같 습 니 다.

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;
 }
}

Msg 는 두 필드 만 있 고 content 는 메시지 의 내용 을 표시 하 며 type 은 메시지 의 유형 을 표시 합 니 다(2 값 은 선택 할 수 있 습 니 다.하 나 는 TYPE 입 니 다.RECRIVED,하 나 는 TYPESENT)。
4.이어서 RecyclerView 하위 항목 의 레이아웃 을 작성 하고 msg 를 새로 만 듭 니 다.item.xml,코드 는 다음 과 같 습 니 다.

<?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="283dp"
  android:layout_height="106dp"
  android:layout_gravity="left"
  android:background="@drawable/zuo"
  android:weightSum="1">

  <TextView
   android:id="@+id/left_msg"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:layout_gravity="center"
   android:layout_margin="10dp"
   />
 </LinearLayout>

 <LinearLayout
  android:id="@+id/right_layout"
  android:layout_width="229dp"
  android:layout_height="109dp"
  android:layout_gravity="right"
  android:background="@drawable/you"
  >
  <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>
받 은 메시지 국 은 왼쪽 을 정렬 하고 보 낸 메 시 지 는 오른쪽 을 정렬 하 며 해당 하 는 그림 을 배경 으로 한다.
5.RecyclerView 의 어댑터 클래스 를 만 들 고 MsgAdapter 를 새로 만 듭 니 다.코드 는 다음 과 같 습 니 다.

public 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=(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 ViewHolder onCreateViewHolder(ViewGroup parent,int viewType){    
 //onCreateViewHolder()    ViewHolder  
  View view= LayoutInflater.from(parent.getContext()).inflate(R.layout.msg_item,parent,false);
  return new ViewHolder(view);             
 //               ,   
 }
 @Override
 public void onBindViewHolder(ViewHolder Holder,int position){      
 //onBindViewHolder()   RecyclerView         ,                  
  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();
 }
}

6.마지막 으로 MainActivity 의 코드 를 수정 하여 RecyclerView 에 데 이 터 를 초기 화하 고 발송 버튼 에 이벤트 응답 을 추가 합 니 다.코드 는 다음 과 같 습 니 다.

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.activity_main);
  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); 

  //LinearLayoutLayout     ,          RecyclerView  
  msgRecyclerView.setLayoutManager(layoutManager);

  adapter=new MsgAdapter(msgList);         

  //  MsgAdapter          MsgAdapter      
  msgRecyclerView.setAdapter(adapter);

  send.setOnClickListener(new View.OnClickListener(){     

 //        
   @Override
   public void onClick(View v){
    String content=inputText.getText().toString();    

  //  EditText    
    if(!"".equals(content)){         

  //            Msg  ,      msgList   
     Msg msg=new Msg(content,Msg.TYPE_SENT);
     msgList.add(msg);
     adapter.notifyItemInserted(msgList.size()-1);   

  //      notifyItemInserted()             ,            RecyclerView   
     msgRecyclerView.scrollToPosition(msgList.size()-1); 

  //  scrollToPosition()               ,                
     inputText.setText("");         

  //  EditText setText()          
    }
   }
  });
 }

 private void initMsgs(){
  Msg msg1=new Msg("Hello guy.",Msg.TYPE_RECEIVED);
  msgList.add(msg1);
  Msg msg2=new Msg("Hello.Who is that?",Msg.TYPE_SENT);
  msgList.add(msg2);
  Msg msg3=new Msg("This is Tom!",Msg.TYPE_RECEIVED);
  msgList.add(msg3);
 }
}

프로그램 을 실행 합 니 다.효 과 는 다음 과 같 습 니 다.

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기