Android 는 RecyclerView 를 이용 하여 채 팅 창 을 작성 합 니 다.
9307 단어 AndroidRecyclerView채 팅 창
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);
}
}
프로그램 을 실행 합 니 다.효 과 는 다음 과 같 습 니 다.이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Bitrise에서 배포 어플리케이션 설정 테스트하기이 글은 Bitrise 광고 달력의 23일째 글입니다. 자체 또는 당사 등에서 Bitrise 구축 서비스를 사용합니다. 그나저나 며칠 전 Bitrise User Group Meetup #3에서 아래 슬라이드를 발표했...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.