使用FloatingActionMenu Android的FragmentTabHost

时间:2016-08-07 16:46:11

标签: java android relativelayout floating-action-button fragment-tab-host

我正在页面右下方创建一个带有FragmentTabHostFloatingActionMenu的Android版面。出于某种原因,当我点击整个页面的任何地方时,我会调用附加到菜单的onClickListener。我无法弄清楚为什么会发生这种情况,我对RelativeLayout很新,所以我对其功能缺乏了解可能是问题的根源。

有谁能告诉我为什么我会看到这种行为?

MainActivity的layout.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.app.FragmentTabHost 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="@android:id/tabhost"
    tools:context=".Activities.LandingActivityPackage.LandingTabActivity">
    <RelativeLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <TabWidget

            android:id="@android:id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:background="@color/colorPrimary">
        </TabWidget>
        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="0dp"
            android:layout_height="0dp" />

        <FrameLayout
            android:id="@+id/realtabcontent"
            android:layout_width="match_parent"
            android:layout_height="0dp" />
        <com.github.clans.fab.FloatingActionMenu
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@+id/floating_action_menu"
            android:layout_gravity="end"
            android:elevation="8dp"
            app:menu_icon="@drawable/ic_menu_white_24dp"
            android:layout_marginRight="10dp"
            android:layout_marginBottom="10dp"
            android:layout_marginLeft="10dp">
            <com.github.clans.fab.FloatingActionButton
                android:id="@+id/fab_account"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                app:fab_size="mini"
                android:src="@drawable/ic_account_circle_white_18dp"/>
            <com.github.clans.fab.FloatingActionButton
                android:id="@+id/fab_info"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                app:fab_size="mini"
                android:src="@drawable/ic_info_white_18dp"/>
        </com.github.clans.fab.FloatingActionMenu>
    </RelativeLayout>

</android.support.v4.app.FragmentTabHost>

这就是我在Java中附加监听器的方式。

FloatingActionMenu fam = (FloatingActionMenu) findViewById(R.id.floating_action_menu);
fam.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
        System.out.println("fam clicked");
    }
});

0 个答案:

没有答案