Android 安卓材质设计小故障

Android 安卓材质设计小故障,android,button,material-design,Android,Button,Material Design,在此andriod材质设计库中使用矩形按钮时出现问题: 当我触摸按钮并滚动它时,如果你不点击按钮,就会留下一些无法移动的内容 图片: xml代码 <com.gc.materialdesign.views.ScrollView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:materialdesign="http:/

在此andriod材质设计库中使用
矩形按钮时出现问题:
当我触摸按钮并滚动它时,如果你不点击按钮,就会留下一些无法移动的内容
图片:

xml代码

<com.gc.materialdesign.views.ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:materialdesign="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:focusable="false"
android:focusableInTouchMode="false"
tools:context=".MainActivity$PlaceholderFragment">
<LinearLayout
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">
    <view
        class="com.it.university.lbu.ecogallery.EcoGallery"
        android:layout_width="fill_parent"
        android:layout_height="140dp"
        android:id="@+id/gallery"
        android:scaleType="fitXY"
        android:visibility="visible"/>
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">

        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:focusable="false">

            <view
                class="com.gc.materialdesign.views.ButtonRectangle"
                android:layout_width="fill_parent"
                android:layout_height="150dp"
                android:id="@+id/view"
                android:layout_weight="1"
                android:background="#ff5146ff"
                android:textSize="25dp"
                android:text="General&#10;   Blog"/>

            <view
                class="com.gc.materialdesign.views.ButtonRectangle"
                android:layout_width="fill_parent"
                android:layout_height="150dp"
                android:id="@+id/view2"
                android:layout_weight="1"
                android:textColor="@color/material_blue_grey_800"
                android:background="#ff67ce00"
                android:padding="0dp"
                android:textSize="25dp"
                android:text="Branch&#10;  Blog" />
        </LinearLayout>

        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" >

            <view
                class="com.gc.materialdesign.views.ButtonRectangle"
                android:layout_width="fill_parent"
                android:layout_height="150dp"
                android:id="@+id/view3"
                android:layout_weight="1"
                android:background="#ff0aff00"
                android:padding="0dp"
                android:textColor="@color/material_blue_grey_800"
                android:textSize="25dp"
                android:text="Personal&#10;    Blog"  />

            <view
                class="com.gc.materialdesign.views.ButtonRectangle"
                android:layout_width="fill_parent"
                android:layout_height="150dp"
                android:id="@+id/view4"
                android:layout_weight="1"
                android:background="#ff007ad4"
                android:padding="0dp"
                android:textSize="25dp"
                android:text="My Friend"  />
        </LinearLayout>

        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" >

            <view
                class="com.gc.materialdesign.views.ButtonRectangle"
                android:layout_width="fill_parent"
                android:layout_height="150dp"
                android:id="@+id/view5"
                android:layout_weight="1"
                android:background="#ffff0000"
                android:padding="0dp"
                android:textSize="25dp"
                android:text="My Teacher"  />

            <view
                class="com.gc.materialdesign.views.ButtonRectangle"
                android:layout_width="fill_parent"
                android:layout_height="150dp"
                android:id="@+id/view6"
                android:layout_weight="1"
                android:background="#ffc1ff00"
                android:padding="0dp"
                android:textSize="25dp"
                android:text="Last News"
                android:textColor="@color/material_blue_grey_800"
                />

        </LinearLayout>
    </LinearLayout>
</LinearLayout>


我有两个解决方案给你

现在,正如您所看到的,这个库已经被大量开发,而且,现在,即使是演示项目也没有更新到它的库中

因此,这里是您可以做的:

  • 使用适用于您的旧库版本。更新演示应用程序时更新

  • 等待所有这一切结束-所有控件都将工作。暂时没有bug报告

  • 我已经给开发者发了一封关于滚动问题的电子邮件,但由于他还没有回复,所以无法确定何时会解决这个问题

    更新

    此库的开发程度很高-有时它不工作,但会:)


    我回答你的问题了吗?

    谢谢你的帮助,但是你知道我在哪里可以找到旧图书馆吗?@user3556648更新的答案。这里是讨论-