9

私はスナックバーとフローティングアクションボタンに取り組んでいます。スナックバーが表示されているときにフローティングアクションボタンを表示/移動させるためにコーディネーターレイアウトを使用しました。問題は、スナックバーのアクションを保持していることです。フローティング ボタンをタップすると、Snackbar がポップアップし、フローティング アクション ボタンが上に移動します。スナックバー アクション アイテムを押すと、フローティング アクション ボタンが子スナックバーの下に隠れます。

また、フローティングアクションボタンを連続して押すと、フローティングアクションボタンも非表示になります。

以下は私のコードです。

activity_main.xml

<RelativeLayout 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="com.example.dev.firsttest.Screen2"
>

<android.support.v7.widget.Toolbar
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/primary_color"></android.support.v7.widget.Toolbar>

<android.support.design.widget.CoordinatorLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/coordinatorlayout">

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/searchfab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|right"
        android:layout_marginBottom="20dp"
        android:layout_marginRight="20dp"
        android:src="@drawable/ic_add_black_24dp"
        app:fabSize="normal">

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

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

主な活動

Toolbar toolbar;
FloatingActionButton searchfab;
CoordinatorLayout coordinatorLayout;


@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_screen2);

    toolbar = (Toolbar)findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);

    coordinatorLayout = (CoordinatorLayout)findViewById(R.id.coordinatorlayout);

    searchfab = (FloatingActionButton)findViewById(R.id.searchfab);
    searchfab.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Snackbar.make(coordinatorLayout, "This is Snackbar Demo", Snackbar.LENGTH_LONG).setAction("Click", new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    Snackbar.make(coordinatorLayout, "This is Child Snackbar", Snackbar.LENGTH_LONG).show();
                }
            }).show();
        }
    });


}

スナックバーで子アクションを押し、フローティング アクション ボタンを連続してタップすると、フローティング アクション ボタンが非表示になり、スナックバーに戻ります。

あなたの助けに感謝

ありがとうございました

4

2 に答える 2

7

答えはここにあります: https://github.com/ggajews/coordinatorlayoutwithfabdemo

スナックバーが表示されると、FAB が移動します。

于 2015-09-18T06:38:47.133 に答える
0

問題を再現できませんでした。これが私のコードです

View.OnClickListener test1 = new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Snackbar.make(getActivity().findViewById(R.id.snackbarPosition), "test 1", Snackbar.LENGTH_LONG)
                        .setAction(R.string.snackbar_action_undo, new View.OnClickListener() {

                            @Override
                            public void onClick(View view) {
                                 Snackbar.make(getActivity().findViewById(R.id.snackbarPosition), "test 2", Snackbar.LENGTH_LONG)
                                        .setActionTextColor(getResources().getColor(R.color.myBlueGreen))
                                        .show();
                            }
                        })
                        .show();
            }
        };

FloatingActionButton button = (FloatingActionButton)streamView.findViewById(R.id.buttonFloat);
button.setOnClickListener(test1); 

XML

<android.support.design.widget.CoordinatorLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:textColor="@android:color/white"
    android:id="@+id/snackbarPosition">

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/buttonFloat"
        android:src="@drawable/ic_content_new"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|right"
        android:layout_marginBottom="20dp"
        android:layout_marginRight="20dp"
        app:backgroundTint="@color/myBlueGreen"

        app:elevation="6dp"
        app:pressedTranslationZ="12dp"
        />

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

2 番目のスナックバー「test2」を追加すると、スナックバー「test1」の OnClickListener として表示されます。私にとっては、スナックバー「test1」を「test2」に置き換えます (フローティング アクション ボタンは非表示になりません)。

また、フローティング アクション ボタンを 2 回クリックすると、スナックバー「test1」が点滅します。つまり、2 回表示されますが、2 つのスナックバーが重なって表示されるわけではありません。フローティング アクション ボタンは消えません。

つまり、「親」のスナックバーの上に「子」のスナックバーが表示されることはありません。

あなたのコードと私のコードの違いがわかりません。私のコードをコピーしてみて、問題が解決するかどうかを確認してください。

于 2015-09-17T08:32:27.607 に答える