#android #android-studio #android-layout #android-fragments
Вопрос:
Я создаю лист действий, но он попадает под панель, я попробовал некоторые коды, посмотрел на другие вопросы, но ничего не сработало, сначала я увидел, что это ошибка, но я не нашел никаких возможных исправлений
кто-нибудь знает, как я мог бы это исправить?
микласс
private void openDialog(View v) {
//LayoutInflater inflater = (LayoutInflater) view.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
LayoutInflater inflater = (LayoutInflater) activity.getLayoutInflater();
View sheet = inflater.inflate(R.layout.sheet_foto, null);
BottomSheetDialog bottomSheetDialog = new BottomSheetDialog(activity);
bottomSheetDialog.setContentView(sheet);
TextView camera_sel = sheet.findViewById(R.id.camera);
TextView gallery_sel = sheet.findViewById(R.id.gallery);
camera_sel.setOnClickListener(v1 -> {
//takePhotoFromCamera();
bottomSheetDialog.dismiss();
});
gallery_sel.setOnClickListener(v12 -> {
//takePhotoFromGallery();
bottomSheetDialog.dismiss();
});
bottomSheetDialog.show();
}
Макет Лист действий
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:gravity="center"
android:layout_marginBottom="-56dp"
android:padding="4dp">
<TextView
android:id="@ id/camera"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="?attr/selectableItemBackgroundBorderless"
android:clickable="true"
android:drawablePadding="8dp"
android:drawableTop="@drawable/ic_take_photo"
android:gravity="center_horizontal"
android:padding="16dp"
android:text="Camera"
android:textSize="18sp" />
<TextView
android:id="@ id/gallery"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="?attr/selectableItemBackgroundBorderless"
android:clickable="true"
android:drawablePadding="8dp"
android:drawableTop="@drawable/ic_add_photo"
android:gravity="center_horizontal"
android:padding="16dp"
android:text="Gallery"
android:textSize="18sp" />
</LinearLayout>
вот щелчок, который вызывает OpenDialog
public void onClickPesquisar() {
if(TextUtils.isEmpty(identificacaoTrabalhador.getText().toString())){
openDialog();
}else{
}
}
private void openDialog() {
LayoutInflater inflater = (LayoutInflater) activity.getLayoutInflater();
View sheet = inflater.inflate(R.layout.sheet_foto, null);
BottomSheetDialog bottomSheetDialog = new BottomSheetDialog(this);
bottomSheetDialog.setContentView(sheet);
TextView camera_sel = sheet.findViewById(R.id.camera);
TextView gallery_sel = sheet.findViewById(R.id.gallery);
camera_sel.setOnClickListener(v1 -> {
//takePhotoFromCamera();
bottomSheetDialog.dismiss();
});
gallery_sel.setOnClickListener(v12 -> {
//takePhotoFromGallery();
bottomSheetDialog.dismiss();
});
bottomSheetDialog.show();
}
Комментарии:
1. можете ли вы показать мне вызов метода OpenDialog() в вашей деятельности?
2. отредактировал вопрос, поставил код пламени, я просто называю это Основным видом деятельности