24

我正在考虑一种在我的应用程序中实现 Android Snackbars 的方法。基本上,我希望能够从应用程序的任何位置显示 Snackbar。

我发现,android.support.design.widget.Snackbar放入android.support.design.widget.CoordinatorLayout. 否则,我无法将其滑开,它显示在导航抽屉上并且不与浮动操作按钮交互。

所以问题是:将我的所有布局包装在一个好习惯中CoordinatorLayout,在 BaseActivity 中获取它的引用,以便它可以从几乎任何地方传递给 Snackbar?

这似乎是确保 Snackbar 和其他布局组件正常运行的可靠方法,但是……嗯,这意味着接触所有布局并拥有一个 BaseActivity 由所有其他活动扩展,并且可以从任何想要显示的 Fragment 访问小吃店。

有没有更好的办法?

4

3 回答 3

7

我已经Snackbar在应用程序的任何地方实现了相同的打开方式。

我创建了一种常用方法,只需传递我需要显示的上下文和字符串消息,无需传递任何视图。查看我的代码片段。

 public static void showSnackBar(Activity context, String msg) {
   Snackbar.make(context.getWindow().getDecorView().findViewById(android.R.id.content), msg, Snackbar.LENGTH_LONG).show();
 }

Snackbar使用这个,你每次都会有你的底线。

于 2017-11-17T05:31:35.390 回答
2

这些是您拥有的选项。在项目中根据需要使用其中之一。

最好的办法

最好的方法是您在问题中已经说过,添加一个BaseActivity并从中扩展您的所有活动。根据官方CoordinatorLayout文档,

CoordinatorLayout适用于两个主要用例:

  1. 作为顶级应用程序装饰或 chrome 布局
  2. 作为与一个或多个子视图进行特定交互的容器

所以CoordinatorLayout主要是为了这个原因而创建的(尽管还有其他原因)。文档中提到的性能问题最少。

通过使用 FrameLayout

正如 Rainmaker 已经回答的那样,您可以使用 Activity 来引用CoordinatorLayout布局文件夹中的布局,其中子文件夹将成为框架布局。

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
    android:id="@+id/activity_root"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <FrameLayout
        android:id="@+id/content"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</android.support.design.widget.CoordinatorLayout>

然后,您将只使用一项活动setContentView(R.layout.root_coordinate_layout)。然后,您将所有其他活动转换为片段并添加它们:

MyFragment myf = new MyFragment();
FragmentTransaction transaction = getFragmentManager()
    .beginTransaction()
    .add(R.id.your_layout, myf)
    .commit();

程序化方式

这是做同样事情的另一种方式。但这有点复杂,需要做很多工作。

在您的所有活动中setContentView(R.id.your_layout),请使用以下命令:

LayoutInflater inflater = LayoutInflater.from(this);
ConstraintLayout yourLayout = (ConstraintLayout) inflater.inflate(R.layout.your_layout, null, false);
CoordinatorLayout layout = new CoordinatorLayout(this);
// Set its property as you wish ...
layout.addView(mainScreen);
setContentView(layout);
于 2017-11-17T01:47:48.113 回答
1

是的,您可以将布局包装成协调器布局,例如

<android.support.design.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:id="@+id/coordinatorLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|enterAlways"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
    </android.support.design.widget.AppBarLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:paddingLeft="20dp"
        android:paddingRight="20dp"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <Button
            android:id="@+id/btnSimpleSnackbar"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="30dp"
            android:text="Simple Snackbar" />

        <Button
            android:id="@+id/btnActionCallback"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:text="With Action Callback" />

        <Button
            android:id="@+id/btnCustomSnackbar"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:text="Custom Color" />

    </LinearLayout>

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="end|bottom"
        android:layout_margin="16dp"
        android:src="@android:drawable/ic_dialog_email" />

</android.support.design.widget.CoordinatorLayout>
于 2017-11-17T07:19:12.203 回答