- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我生成 Android Studio's BottomSheetDialogFragment
只需稍加修改即可正常工作,但我添加 app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior"
到 Bottom Sheet 进行回调它会在 Bottom Sheet 的顶部添加空白区域。我也试过app:behavior_hideable="true"
app:behavior_peekHeight="128dp"
和来自 here 的解决方案和 here但在我的情况下它不起作用这是我的布局和 fragment
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_height="match_parent"
android:layout_width="match_parent">
<RelativeLayout
android:id="@+id/bottomSheet"
android:layout_height="match_parent"
android:layout_width="match_parent"
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior"
>
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/topBarBottomSheet"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Spinner
android:id="@+id/attachmentOption"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="24dp"
android:layout_marginLeft="24dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.019"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<SearchView
android:id="@+id/searchView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="16dp"
android:layout_marginRight="16dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/closeButton"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="1.0" />
<ImageButton
android:id="@+id/closeButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:background="@android:drawable/ic_menu_close_clear_cancel" />
</androidx.constraintlayout.widget.ConstraintLayout>
<EditText
android:id="@+id/searchViewEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/topBarBottomSheet"
android:text="TextView" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycleviewGallery"
android:layout_width="match_parent"
android:layout_height="600dp"
android:layout_below="@id/searchViewEditText"
android:clipToPadding="false"
android:paddingTop="@dimen/list_item_spacing_half"
android:paddingBottom="@dimen/list_item_spacing_half"
tools:listitem="@layout/recycler_view_item_3"
tools:spanCount="3"
tools:layoutManager="GridLayoutManager" />
</RelativeLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
public class BottomSheet extends BottomSheetDialogFragment {
public static String TAG = "Bottom Sheet";
// TODO: Customize parameter argument names
private static final String ARG_ITEM_COUNT = "item_count";
private Listener mListener;
// TODO: Customize parameters
public static BottomSheet newInstance() {
/*final Bundle args = new Bundle();
args.putInt(ARG_ITEM_COUNT, itemCount);
fragment.setArguments(args);*/
return new BottomSheet();
}
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container,@Nullable Bundle savedInstanceState) {
getRecentImages();
return inflater.inflate(R.layout.fragment_bottemsheet_list_dialog, container, false);
}
@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
final RecyclerView recyclerView = view.findViewById(R.id.recycleviewGallery);
View parentView = view.findViewById(R.id.bottomSheet);
BottomSheetBehavior bottomSheetBehavior = BottomSheetBehavior.from(parentView);
bottomSheetBehavior.setBottomSheetCallback(new BottomSheetBehavior.BottomSheetCallback() {
@Override
public void onStateChanged(@NonNull View view, int i) {
switch (i){
case BottomSheetBehavior.STATE_COLLAPSED:
Log.d(TAG,"Collapsed");
break;
case BottomSheetBehavior.STATE_DRAGGING:
Log.d(TAG,"Dragging");
break;
case BottomSheetBehavior.STATE_EXPANDED:
Log.d(TAG,"Expanded");
break;
case BottomSheetBehavior.STATE_HALF_EXPANDED:
Log.d(TAG,"Half Expanded");
break;
case BottomSheetBehavior.STATE_HIDDEN:
Log.d(TAG,"Hidden");
break;
case BottomSheetBehavior.STATE_SETTLING:
Log.d(TAG,"Settling");
break;
}
}
@Override
public void onSlide(@NonNull View view, float v) {
}
});
}
@Override
public void onAttach(Context context) {
super.onAttach(context);
final Fragment parent = getParentFragment();
Log.d(TAG,"Parent = "+parent+" Context "+context);
if (parent != null) {
mListener = (Listener) parent;
} else {
mListener = (Listener) context;
}
}
@Override
public void onDetach() {
mListener = null;
super.onDetach();
}
public interface Listener {
void onBottomSheetClicked(int position);
}
}
最佳答案
我在不添加 app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior"
的情况下使我的 Bottom Sheet 完全工作我从 xml 文件中删除了行为,然后在 BottomSheetDialogFragment
中删除了行为。我覆盖 onCreateDialog
像这样
@NonNull
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
BottomSheetDialog dialog = (BottomSheetDialog) super.onCreateDialog(savedInstanceState);
dialog.setOnShowListener(new DialogInterface.OnShowListener() {
@Override
public void onShow(DialogInterface dialog) {
//Get the BottomSheetBehavior
BottomSheetDialog d = (BottomSheetDialog) dialog;
FrameLayout bottomSheet = d.findViewById(com.google.android.material.R.id.design_bottom_sheet);
if (bottomSheet != null) {
bottomSheet.getLayoutParams().height = ViewGroup.LayoutParams.MATCH_PARENT;
bottomSheetBehavior = BottomSheetBehavior.from(bottomSheet);
bottomSheet.setMinimumHeight(350);
bottomSheetBehavior.setBottomSheetCallback(new BottomSheetBehavior.BottomSheetCallback() {
@Override
public void onStateChanged(@NonNull View view, int i) {
switch (i){
case BottomSheetBehavior.STATE_COLLAPSED:
Log.d(TAG,"Collapsed");
break;
case BottomSheetBehavior.STATE_DRAGGING:
Log.d(TAG,"Dragging");
break;
case BottomSheetBehavior.STATE_EXPANDED:
Log.d(TAG,"Expanded");
break;
case BottomSheetBehavior.STATE_HALF_EXPANDED:
Log.d(TAG,"Half Expanded");
break;
case BottomSheetBehavior.STATE_HIDDEN:
Log.d(TAG,"Hidden");
dismiss();
break;
case BottomSheetBehavior.STATE_SETTLING:
Log.d(TAG,"Settling");
break;
}
}
@Override
public void onSlide(@NonNull View view, float v) {
}
});
}
}
});
return dialog;
}
onShow
中的上述代码我正在创建
BottomSheetDialog
的实例的方法并借助实例给出
FrameLayout
对象 android(x) 默认 Bottom Sheet
BottomSheetDialog d = (BottomSheetDialog) dialog;
FrameLayout bottomSheet = d.findViewById(com.google.android.material.R.id.design_bottom_sheet);
BottomSheetBehavior bottomSheetBehavior = BottomSheetBehavior.from(bottomSheet);
bottomSheetBehavior.setBottomSheetCallback(new BottomSheetBehavior.BottomSheetCallback()
关于android - Bottomsheetbehavior 为 Bottom Sheet 的顶部增加了额外的空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59511026/
我在 Android 中使用 Google Sheets API v4。 https://developers.google.com/sheets/api/quickstart/android 我需要
我想使用 googlesheetv4 api 在 googlesheet 中使用 rowno 删除一行。有人可以给我提供一个示例代码吗?我创建了一个删除行的方法公共(public)无效deleteRo
我想使用 googlesheetv4 api 在 googlesheet 中使用 rowno 删除一行。有人可以给我提供一个示例代码吗?我创建了一个删除行的方法公共(public)无效deleteRo
如何在 Google 表格中获取数据透视表,其中一列显示值在列中出现的次数? 我知道可以使用 countif 来完成。功能,但我想使用数据透视表来完成。 最佳答案 转到顶部菜单 Data--> Piv
在 Google 表格中,我尝试使用作用于其他两个单元格的条件格式公式将文本添加到不同的单元格。 例如,我有几列......“C”和“E”。我正在比较 C25 和 E25 中的值,如下所示:=E25<
假设我有一个带有随机工作表名称的工作簿,“Bob”、“Sally”、“Billy”、“John”或类似的非连续名称。我还有另一张名为“总计”的表格。我怎样才能对特定单元格的值求和,比如所有单元格的“H
我已经能够使用 Google Sheet 的 SEQUENCE为我提供 Partner 1 的顺序日期的公式但随后公式停止并且不会继续到 Partner 2 . 我曾尝试在 Google 的 Arra
我需要对字符串中的所有数字求和,在字符串中不会有任何字母只有数字。单元格包含 112121 . 我尝试使用 SUM和 CASE与 QUERY函数,但是 CASE不支持。 示例:1121 = 5。 最佳
在 Google Sheets 上,我试图在一个单元格中使用文本(比如 B4 包含:“Janet”)并在另一个单元格中的句子中引用它(比如 G4 是:“嗨{在此处输入 B4},我正在到达今天给你……”
我正在创建一个锻炼电子表格来跟踪我每周的表现,每张表格都涵盖了一周的锻炼。每张纸(除了第一张)都是前一张纸的副本,我想从上一张纸中继承一些值;例如,前一周的练习次数。 我已经阅读了一些 API,但似乎
我尝试使用示例“读取多个范围”: https://sheets.googleapis.com/v4/spreadsheets/{SpreadsheetID}/values:batchGet?range
我有一个从 Google 电子表格中获取数据的网站。我希望我的用户在不登录的情况下查看获取的数据。这可能吗?怎么做? 为了获取和更新工作表数据,我只需要一个帐户,最好在服务器端登录。但是,我没有看到任
我正在 Google Sheets 中使用 COUNTIF 公式进行一些动态蒙特卡罗模拟。有些事情不像我想象的那样工作,但我无法解决。我有两列要比较,我需要计算一列中的值大于另一列中的值的实例。如果我
我正在使用 Google Sheets 中的一个大(但简单)的公式,该公式重复使用相同的公式块。要从一堆不同的选项卡中获取一堆数据,我必须在该公式块中使用 708 个字符。但是随后我需要在 1 个单元
我在我的工作表中使用以下查询为艺术家导入总 Spotify 流。例子:=IMPORTXML("https://chartmasters.org/spotify-streaming-numbers-to
我正在尝试做一个非常简单的 lookup在数据验证字段上: 我有 4 个简单的值: 无风险 低 中级 高 除此之外,我还有以下值(value)观: 0 0.1 0.2 0.5 我使用 lookup公式
我有一个专栏 COLUMN H | Column R trading type | Closed P&L Lotto | 100% Lotto | 200% | 100% Day |
我正在寻找一种通过Google Sheets API创建一组行的方法-有没有办法做到这一点?我看不到找到可以做到这一点的API,但似乎应该是相当普遍的格式设置需求。 通过选择一组行,右键单击,该选项在
我有一个表,基本上显示了另一个表的数据。问题是:我在原始表中有一些脚本程序,这些程序涉及删除行,当它发生时,我丢失了对行所在位置的引用。 我怎样才能解决这个问题? 已经试过了:='INVENTORY'
我想通过 API v4 隐藏谷歌电子表格中的给定列,但我很难这样做。 有谁知道这是否可能并设法做到了? 我们在 Apps 脚本中有一个 dedicated method这样做,如果 REST API
我是一名优秀的程序员,十分优秀!