上半部分按钮不可点击

时间:2018-12-26 11:32:39

标签: android xml button layout

嵌套在协调器布局中的display_current_month中的以下按钮display_current_yearfragment在上半部分不可单击。

<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>

附有实际按钮的屏幕截图。非常感谢您的帮助。

P.S。这些按钮似乎有一个底部填充,可以在其边框下方〜10 dp的位置单击按钮。

2 个答案:

答案 0 :(得分:1)

您的视图寻呼机位于您的工具栏下方,这就是为什么您无法单击按钮,并且您的工具栏将获得屏幕触摸的原因。 您可以将下面的代码放在xml的ViewPager标记内。

android:layout_marginTop="?android:attr/actionBarSize"

答案 1 :(得分:0)

默认情况下,可单击按钮是可单击的,并且在您未将clickListener动态设置为null之前,也应在Java文件中获取单击事件回调。