Кнопки не кликабельны в верхней половине - PullRequest
0 голосов
/ 26 декабря 2018

Следующие кнопки display_current_month и display_current_year в fragment, вложенные в макет координатора, не активируются в верхней половине.

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/activity_custom_calendar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="10dp">

<Button
    android:id="@+id/display_current_month"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="15dp"/>

<Button
    android:id="@+id/display_current_year"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_toEndOf="@id/display_current_month"
    android:layout_marginTop="15dp"/>

<LinearLayout
    android:id="@+id/calendar_days_of_week"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/display_current_month"
    android:orientation="horizontal">
</LinearLayout>
</RelativeLayout>

Макет координатора:

<android.support.design.widget.AppBarLayout
android:id="@+id/reminders_app_bar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/shape_rounded_rectangle">

<android.support.design.widget.CollapsingToolbarLayout
    android:id="@+id/reminders_collapsing_toolbar_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:contentScrim="?attr/colorPrimary"
    app:layout_scrollFlags="scroll|exitUntilCollapsed">

    <android.support.v4.view.ViewPager
        android:id="@+id/calendar_view"
        android:layout_width="match_parent"
        android:layout_height="380dp"
        android:layout_margin="5dp"
        app:layout_collapseMode="parallax" />

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        app:layout_collapseMode="pin"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>

Прикрепленный скриншот с актуальными кнопками.Любая помощь очень ценится.

PS Кнопки, кажется, имеют нижний отступ, который позволяет нажимать кнопки на ~ 10 dp ниже их границы.

Ответы [ 2 ]

0 голосов
/ 26 декабря 2018

ваш видовой пейджер находится под панелью инструментов, поэтому вы не можете нажимать на кнопки, и ваша панель инструментов будет касаться экрана.Вы можете поместить ниже код внутри тега ViewPager в вашем XML.

android:layout_marginTop="?android:attr/actionBarSize"
0 голосов
/ 26 декабря 2018

По умолчанию кнопки доступны для нажатия и должны вызывать обратный вызов событий click в java-файле, пока вы не установили для clickListener динамически значение null.

...