1. ImageButton 버튼의 아이콘 크기 조절 속성
->https://dreamaz.tistory.com/154
android:scaleType="fitCenter"
2. 키보드와 UI 동시에 올리기
->Manifest.xml 파일
<activity android:name=".MainActivity"
android:windowSoftInputMode="adjustPan">
3. Fragment내의 RecyclerView의 아이템 클릭 시, 다른 Fragment로 교체하기
-> Adapter에서 처리
@Override
public View getView(int i, View convertView, ViewGroup viewGroup) {
//말풍선 클릭 시 댓글창 넘어감
btn_comment.setOnClickListener(new View.OnClickListener(){
@Override
public void onClick(View view) {
changeCommentFragment();
}
});
//그 외 기능들
return converView;
}
//버튼 누를때 다음 프래그먼트로 전환
public void changeCommentFragment(){
((MainActivity)context).getSupportFragmentManager().beginTransaction().replace(R.id.frag_container, new CommentActivity()).commit();
//((MainActivity)context).getFragmentManager();
}
4. ViewPager2의 indicator변환이 안됨
'Android > Project' 카테고리의 다른 글
[Cafe In] 기록 #3: 자동 로그인 구현 (0) | 2022.06.27 |
---|---|
[Cafe In] 기록 #2: Retrofit2 (0) | 2022.03.02 |
ViewPager2의 Fragment 데이터 받기 (Bundle 이용) (0) | 2021.08.07 |
Spinner & DatePicker 사용해 시간/날짜 입력받기 (0) | 2021.08.05 |
ViewPager2 로 여러 개의 뷰 슬라이드 구현 (0) | 2021.08.04 |