空框架布局阻止

时间:2017-10-01 12:22:06

标签: android button imagebutton android-framelayout

enter image description here

你可以看到backButton在框架布局后面。

但我想让这个按钮可以点击,除非它可见。

我正在使用scrollview,这意味着我无法将BackButton置于上方。 因为当我向上滚动时它会崩溃。

继承XML

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout 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"
             android:orientation="vertical">


    <ImageView
        android:layout_width="match_parent"
        android:layout_height="230dp"
        android:src="@drawable/background"
        android:scaleType="centerCrop">

    </ImageView>

    <FrameLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

        <ImageView
            android:id="@+id/backButton"
            android:clickable="true"
            android:layout_width="20dp"
            android:layout_height="20dp"
            android:layout_alignParentTop="true"
            android:layout_marginLeft="20dp"
            android:layout_marginTop="20dp"
            android:src="@drawable/ic_arrow_back_white"/>

    </FrameLayout>

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"

        android:layout_marginTop="100dp"
        android:scrollbars="none">


        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"

            android:orientation="vertical"
            android:weightSum="1">


            <FrameLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight="0.74"
                android:descendantFocusability="blocksDescendants">


    //SOME CONTENT HERE, REMOVED FOR READABILITY


            </FrameLayout>
        </LinearLayout>

    </ScrollView>


</FrameLayout>

简单的问题。怎么样?

3 个答案:

答案 0 :(得分:0)

这里的问题似乎是你的result, data = mail.uid('search', None, "UID", start_message_uid + ':*') 里面只有一个孩子,你也没有使用`android:layout_gravity&#34;属性。请参阅docs

  

FrameLayout旨在阻挡屏幕上的某个区域以显示单个项目。通常,FrameLayout应该用于保存单个子视图,因为以可以扩展到不同屏幕大小而儿童不会相互重叠的方式组织子视图可能很困难。但是,您可以使用android:layout_gravity属性将多个子项添加到FrameLayout并通过为每个子项分配重力来控制它们在FrameLayout中的位置。

答案 1 :(得分:0)

从您上传的图片中我可以看到,使用Android中的新支持库可以轻松实现整个布局。

如果是这种情况,可以将整个布局转换为使用CoordinatorLayout而不是直接使用FrameLayout。请检查以下图片。如果那就是你想要的,那么请继续关注,如果它不是你想要的那样你可以 IGNORE 这个答案:

CoordinatorLayout

如果您想要这样的话,那么FrameLayout可能是一个很难的方法,而存在支持设计库可以让您的工作更轻松。

在这种情况下,它是CoordinatorLayoutCollapsing Tool Bar,但即使您不希望折叠工具栏仍然是协调器布局,也是最好的选择!

如果您想了解有关支持设计库的更多信息,请点击这里Android Developers Google Blog。 协调器布局很容易使大自然的布局和它的一个明智的选择,对于我上传的代码图像将是这样的:

    <android.support.design.widget.CoordinatorLayout
       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"
     android:fitsSystemWindows="true"
tools:context="com.sample.foo.usingcoordinatorlayout.FabAndSnackbarActivity">

<android.support.design.widget.AppBarLayout
    android:id="@+id/appBar"
    android:layout_width="match_parent"
    android:layout_height="300dp"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    android:fitsSystemWindows="true">

    <android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/collapsingToolbar"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_scrollFlags="scroll|exitUntilCollapsed"
        android:fitsSystemWindows="true"
        app:contentScrim="?attr/colorPrimary"
        app:expandedTitleMarginStart="48dp"
        app:expandedTitleMarginEnd="64dp"
        app:title="@string/collapsing_toolbar">

        <ImageView
            android:id="@+id/toolbarImage"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scaleType="centerCrop"
            android:fitsSystemWindows="true"
            android:src="@drawable/bg"
            app:layout_collapseMode="parallax" />

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

<android.support.v4.widget.NestedScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="28sp"
        android:lineSpacingExtra="8dp"
        android:text="@string/long_latin"
        android:padding="@dimen/activity_horizontal_margin" />
</android.support.v4.widget.NestedScrollView>

<android.support.design.widget.FloatingActionButton
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:layout_margin="@dimen/activity_horizontal_margin"
    android:src="@drawable/mascot_icon"
    app:layout_anchor="@id/appBar"
    app:layout_anchorGravity="bottom|end" />
</android.support.design.widget.CoordinatorLayout>

要了解有关所有此支持库的更多信息以及更多其他有趣的功能,请查看this link its a good blog post所有这些内容!永远记住,您将始终在app.gradle文件中添加支持设计,就像appcompat一样。但是这些链接的描述将包含所有这些信息。快乐的编码!

答案 2 :(得分:-2)

使您的覆盖框架不要自定义触摸事件,让您的下方按钮能够处理触摸事件。所以它是可点击的。