안 드 로 이 드 는 위 챗 을 모방 하여 댓 글 기능 을 실현 한다.

최근 에 한 프로젝트 에서 친구 권 과 비슷 한 모듈 을 써 야 하 는데 댓 글 좋아요 기능 을 실현 해 야 하기 때문에 제 가 댓 글 기능 을 어떻게 실현 하 는 지 말씀 드 리 겠 습 니 다.
일단 효과 도 를 올 리 고요.  

여기에 나의 코드 를 붙 여 라.

//           
 mIv_header_discuss.setOnClickListener(new View.OnClickListener() {
  @Override
  public void onClick(View v) {
  showPopupcomment();
  }
 });
showPopupcomment()방법 은 다음 과 같 습 니 다.

private PopupWindow popupWindow;
 private View popupView = null;
 private EditText inputComment;
 private String nInputContentText;
 private TextView btn_submit;
 private RelativeLayout rl_input_container;
 private InputMethodManager mInputManager;
 @SuppressLint("WrongConstant")
 private void showPopupcomment() {
 if (popupView == null){
 //           
  popupView = LayoutInflater.from(context).inflate(R.layout.comment_popupwindow, null);
 }
 inputComment = (EditText) popupView.findViewById(R.id.et_discuss);
 btn_submit = (Button) popupView.findViewById(R.id.btn_confirm);
 rl_input_container = (RelativeLayout)popupView.findViewById(R.id.rl_input_container);
 //  Timer  Api         ,     200  
 Timer timer = new Timer();
 timer.schedule(new TimerTask() {

  public void run()
  {
  mInputManager = (InputMethodManager)getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
  mInputManager.showSoftInput(inputComment, 0);
  }

 }, 200);
 if (popupWindow == null){
  popupWindow = new PopupWindow(popupView, RelativeLayout.LayoutParams.MATCH_PARENT,
   RelativeLayout.LayoutParams.WRAP_CONTENT, false);

 }
 //popupWindow     ,        ,   
 popupWindow.setTouchable(true);
 popupWindow.setFocusable(true);
 popupWindow.setOutsideTouchable(true);
 popupWindow.setBackgroundDrawable(new ColorDrawable(0x00000000));
 popupWindow.setTouchInterceptor(new View.OnTouchListener() {
  @Override
  public boolean onTouch(View v, MotionEvent event) {
  if (event.getAction() == MotionEvent.ACTION_OUTSIDE)
   popupWindow.dismiss();
  return false;

  }
 });

 //            ,  setSoftInputMode  
 popupWindow.setSoftInputMode(PopupWindow.INPUT_METHOD_NEEDED);
 //      , Activity   ,  ,    。
 popupWindow.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
 //  popupwindow     ,          , Bottom
 popupWindow.showAtLocation(popupView, Gravity.BOTTOM, 0, 0);

 popupWindow.update();

 //    
 popupWindow.setOnDismissListener(new PopupWindow.OnDismissListener() {

  //  dismiss      
  @RequiresApi(api = Build.VERSION_CODES.CUPCAKE)
  public void onDismiss() {

  mInputManager.hideSoftInputFromWindow(inputComment.getWindowToken(), 0); //      


  }
 });
 //      
 rl_input_container.setOnClickListener(new View.OnClickListener() {
  @Override
  public void onClick(View v) {


  mInputManager.hideSoftInputFromWindow(inputComment.getWindowToken(), 0); //      
  popupWindow.dismiss();

  }
 });
 //               
 btn_submit.setOnClickListener(new View.OnClickListener() {
  @Override
  public void onClick(View v) {


  nInputContentText = inputComment.getText().toString().trim();

  if (nInputContentText == null || "".equals(nInputContentText)) {
   showToastMsgShort("       ");
   return;
  }
  mInputManager.hideSoftInputFromWindow(inputComment.getWindowToken(),0);
  popupWindow.dismiss();

  }
 });
 }
처음에 디 스 플레이 를 시 작 했 을 때 EditText 즉 댓 글 상자 가 화면 맨 위 에 올 라 갔 지만 키 보드 는 아래쪽 에 표시 되 어 효과 에 이 르 지 못 했다.많은 글 들 이

popupWindow.setSoftInputMode(PopupWindow.INPUT_METHOD_NEEDED);
popupWindow.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
이 두 문장의 코드 순 서 는 바 꿀 수 없 지만 이렇게 쓴 후에 도 실현 할 수 없다.스스로 한참 을 더 듬 어 보 니 이런 문제 가 발생 한 것 은 댓 글 상자 의 구조 와 도 관계 가 있다 는 것 을 알 게 되 었 다.
그래서 여기에 제 댓 글 창 레이아웃 을 붙 여 볼 게 요.
R.layout.comment_popupwindow

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@+id/rl_input_container"
 android:layout_width="match_parent"
 android:layout_height="match_parent">
 <LinearLayout
  android:layout_width="match_parent"
  android:layout_height="44dp"
  android:background="@color/colorWhite"
  android:layout_alignParentBottom="true"
  android:orientation="horizontal">
  <EditText
  android:id="@+id/et_discuss"
  android:layout_width="0dp"
  android:layout_weight="1"
  android:layout_height="38dp"
  android:textColorHint="#a2a2a2"
  android:textSize="13sp"
  android:layout_marginRight="7dp"
  android:layout_marginLeft="15dp"
  android:layout_marginBottom="6dp"
  android:layout_marginTop="6dp"
  android:ellipsize="end"
  android:background="@drawable/round_edittext_input"
  android:layout_gravity="center_vertical"
  android:paddingLeft="@dimen/ten_padding"
  android:paddingRight="@dimen/ten_padding"
  android:singleLine="true" />
  <Button
  android:id="@+id/btn_confirm"
  android:text="  "
  android:background="@drawable/btn_discuss_bg"
  android:textSize="16sp"
  android:layout_gravity="center_vertical"
  android:textColorHint="#b7b7b7"
  android:textColor="@color/colorWhite"
  android:layout_marginRight="@dimen/ten_padding"
  android:gravity="center"
  android:layout_width="40dp"
  android:layout_height="38dp"/>
  </LinearLayout>
</RelativeLayout>
댓 글 상자 와 보 내기 단 추 를 LinearLayout 으로 감 싸 고 맨 바깥쪽 에 Relative Layout 로 감 싸 면 이 댓 글 상자 가 소프트 키보드 와 함께 튀 어 나 오 는 것 을 발견 할 수 있다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기