Android Fragments 安卓系统Snackbar Inside Fragment

zbsbpyhn  于 11个月前  发布在  Android
关注(0)|答案(5)|浏览(141)

我遇到了一些在片段中显示snackbar的问题。我可以为一个Activity设置一个很好的snackbar,但是当我在片段中尝试时,它就不会出现,也没有错误。

小吃店内碎片

Snackbar snackbar = Snackbar.make(rootView, "Snackbar test", Snackbar.LENGTH_SHORT);
View sbView = snackbar.getView();
TextView textView = (TextView) sbView.findViewById(android.support.design.R.id.snackbar_text);
textView.setTextColor(Color.YELLOW);
snackbar.show();

字符串

分片中的rootView

rootView = inflater.inflate(R.layout.fragment_possible_recipes, container, false);

片段XML

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

<ListView
    android:id="@android:id/list"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"></ListView>

<ImageView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:paddingTop="10dp"
    android:paddingBottom="50dp"
    android:src="@drawable/no_result"
    android:visibility="gone"
    android:id="@+id/imageview"
    android:layout_gravity="center"/>

<android.support.design.widget.FloatingActionButton
    android:id="@+id/filterButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentEnd="true"
    android:layout_gravity="bottom|right"
    android:layout_marginBottom="63dp"
    android:layout_marginRight="16dp"
    android:clickable="true"
    android:src="@drawable/ic_filter"
    app:backgroundTint="@color/floatingButton" />

 </android.support.design.widget.CoordinatorLayout>

主活动XML

<android.support.v4.widget.DrawerLayout
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/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- The main content view -->

<android.support.design.widget.CoordinatorLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/drawer_layout2">

    <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.TabLayout
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:tabMode="fixed"
            app:tabGravity="fill"/>
    </android.support.design.widget.AppBarLayout>

    <android.support.v4.view.ViewPager
        android:id="@+id/viewpager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />

    <FrameLayout
        android:id="@+id/container_body"
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="1" />

</android.support.design.widget.CoordinatorLayout>

<fragment
    android:id="@+id/fragment_navigation_drawer"
    android:name="com.example.rory.pocketchef.Fragments.FragmentDrawer"
    android:layout_width="@dimen/nav_drawer_width"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    app:layout="@layout/fragment_navigation_drawer"
    tools:layout="@layout/fragment_navigation_drawer" />

</android.support.v4.widget.DrawerLayout>

chy5wohz

chy5wohz1#

你可以很容易地做到这一点,只是使用它像下面。

Snackbar.make(getActivity().findViewById(android.R.id.content),
           "text to show", Snackbar.LENGTH_LONG).show();

字符串
这应该在Fragment中的任何地方都有效。
PS.我知道这是旧的,但我还是把它留在这里,以备将来参考。

nom7f22z

nom7f22z2#

试试这样

rootlayout = (CoordinatorLayout) rootView.findViewById(R.id.coordinatorLayout);

字符串
关于Snackbar

Snackbar snackbar = Snackbar.make(rootlayout , "Snackbar test", Snackbar.LENGTH_SHORT);
                            View sbView = snackbar.getView();
                            TextView textView = (TextView) sbView.findViewById(android.support.design.R.id.snackbar_text);
                            textView.setTextColor(Color.YELLOW);
                            snackbar.show();

cbeh67ev

cbeh67ev3#

Snackbar.make(requireActivity().findViewById(R.id.constraintLayout),"your message", Snackbar.LENGTH_LONG)
.show();

字符串
android:id="@+id/constraintLayout”

<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/constraintLayout"
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_width="match_parent"
android:layout_height="match_parent"
tools:context=".YourFragment">

1cklez4t

1cklez4t4#

我遇到了一个和你一样的问题。我让snackbar出现的方法是将下面的代码添加到有问题的片段的oncodeView方法中:

Snackbar.make(rootView,"Snack bar!", Snackbar.LENGTH_SHORT)
                .show();

字符串
请记住,要确保有问题的片段的布局是一个协调器布局。

kmpatx3s

kmpatx3s5#

在片段中,你可以这样放置Snackbar,

Snackbar snackbar = Snackbar.make(container, "I am Snackbar", Snackbar.LENGTH_LONG);
snackbar.show();

字符串

相关问题