안 드 로 이 드 는 위 챗 을 모방 하여 댓 글 기능 을 실현 한다.
일단 효과 도 를 올 리 고요.
여기에 나의 코드 를 붙 여 라.
//
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 로 감 싸 면 이 댓 글 상자 가 소프트 키보드 와 함께 튀 어 나 오 는 것 을 발견 할 수 있다.이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 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에 따라 라이센스가 부여됩니다.