是否可以在键盘上方显示Android Snackbar(如在Y坐标中,而不是分层)?如果显示键盘,Snackbar当前会被隐藏,这是一种不受欢迎的行为。
答案 0 :(得分:67)
设置
android:windowSoftInputMode="adjustResize"
包含小吃栏的活动的AndroidManifest.xml
中的
答案 1 :(得分:10)
显示 Snackbar
时,您可以隐藏键盘。
InputMethodManager imm = (InputMethodManager)activity.getSystemService(Activity.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
答案 2 :(得分:8)
如果将布局嵌套在ScrollView中,小吃栏将显示在键盘顶部。这是因为视图将调整大小以仅占用键盘上方的可用空间。当然,如果有必要,您的视图也可以随时滚动,同时显示或不显示键盘。
答案 3 :(得分:1)
以下作品:
Snackbar
的活动/片段包含ScrolView
。findViewById(android.R.id.content)
: Snackbar.make(getActivity().findViewById(android.R.id.content), "hello world").show();
Snackbar
,请确保ScrolView
嵌套在CoordinatorLayout
内。 Snackbar.make(getActivity().findViewById(android.R.id.my_coordinator_layout), "hello world").show();
答案 4 :(得分:1)
我已经解决了以下问题:
创建课程:
public class ShowSnackBar {
public static void show(Context context, String message, View view) {
InputMethodManager imm = (InputMethodManager) context.getSystemService(Activity.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
Snackbar.make(view, message, Snackbar.LENGTH_SHORT).show();
}
}
您可以通过应用程序中的任何活动访问此类
用法:
ShowSnackBar.show(LoginOtpActivity.this,"Please enter Email ID /Mobile",linear_container);
答案 5 :(得分:0)
这是我的snackbar代码,它的工作方式类似于你所需要的 relativeLayout是我传递的父主布局ID。
snackbar=snackbar.make(relativeLayout,"Image is Saved to "+Savedfile.getPath().toString(),Snackbar.LENGTH_INDEFINITE)
.setAction("OK", new OnClickListener() {
@Override
public void onClick(View v) {
snackbar.dismiss();
snackbar=null;
System.gc();
finish();
}
});
snackbar.show();
答案 6 :(得分:0)
这是我的代码,不需要从方法中设置视图,您可以从DecoreView中获取它:
public static void longSnack(final String text) {
hideKeyboard();
Snackbar snackbar = Snackbar.make(context.getWindow().getDecorView(), text, Snackbar.LENGTH_LONG);
snackbar.show();
}
public static void shortSnack(final String text) {
hideKeyboard();
Snackbar snackbar = Snackbar.make(context.getWindow().getDecorView(), text, Snackbar.LENGTH_SHORT);
snackbar.show();
}
private static void hideKeyboard() {
InputMethodManager inputMethodManager = (InputMethodManager)context.getSystemService(Activity.INPUT_METHOD_SERVICE);
if (inputMethodManager != null) {
inputMethodManager.hideSoftInputFromWindow(context.getWindow().getDecorView().getWindowToken(), 0);
}
}
答案 7 :(得分:0)
我自己遇到了这个问题,并且能够很轻松地解决它。
以前,我已经设置了android:fitsSystemWindows="true"
。
解决方案是将其设置为false,或仅删除该行。 现在,您无需隐藏键盘即可获得所需的结果。
这是我的布局文件供参考:
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/relative"
android:orientation="vertical"
android:fitsSystemWindows="false">
<LinearLayout
android:id="@+id/linear"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/default_gap"
android:orientation="horizontal">
<EditText
android:id="@+id/input"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="15dp"
android:layout_weight="1"
android:hint="@string/input_a_number"
android:ems="10"
android:imeOptions="actionDone|flagNoPersonalizedLearning"
android:inputType="numberSigned|numberDecimal"
android:maxLines="1"
android:maxLength="30"
android:singleLine="true"
android:importantForAutofill="no"
android:focusable="true"
android:focusableInTouchMode="true"
android:focusedByDefault="true"
tools:ignore="LabelFor"
tools:targetApi="o" />
<Spinner
android:id="@+id/spinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minWidth="180dp"
android:layout_marginEnd="@dimen/default_gap"
android:layout_weight="1" />
</LinearLayout>
<ListView
android:id="@+id/listview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/linear"
android:layout_marginEnd="10dp"
android:layout_marginStart="5dp"
android:layout_marginTop="5dp" />
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:visibility="gone"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_margin="16dp"
app:elevation="4dp"
app:srcCompat="@drawable/jade"
app:backgroundTint="@color/jade_fab"
android:layout_gravity="bottom|end"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>