底部附加工具栏与滚动视图

huangapple go评论71阅读模式
英文:

Additional toolbar at the bottom with Scroll View

问题

I want to have an additional Toolbar with elements in it (like a back button and another button to directly go into a certain activity) at the bottom of the layout. The problem is that I use a Scroll View inside a Constraint Layout. How can I insert such a layout file? I tried it by drag and dropping a toolbar in the Scroll View. However, as the Scroll View is bigger than the layout in the layout editor of Android Studio, I did not know where to put it. It is also important that the two toolbars should be fixed. So whenever I scroll down, the toolbars should be visible all the time.

Update: Does nobody have an idea. I am still struggling with that.

Here is the design I want to have (in a first step without any buttons):
底部附加工具栏与滚动视图

Here you can see the code of the XML layout file:

<ScrollView 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"
    xmlns:android="http://schemas.android.com/apk/res/android" >
    <android.support.constraint.ConstraintLayout

        android:layout_width="match_parent"
        android:layout_height="match_parent"

        tools:context=".MainActivity"
        tools:ignore="ExtraText">

        <!-- Learning: The following lines define a toolbar -->

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar_mainActivity"
            android:layout_width="410dp"
            android:layout_height="50dp"
            android:background="#435cb53f"
            android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintHorizontal_bias="0.0"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintVertical_bias="0.0"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
            app:titleTextColor="@android:color/holo_green_light" />


        <TextView
            android:id="@+id/textView_ToolBar_CocktailSelectionActivity"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginBottom="8dp"
            android:layout_marginEnd="8dp"
            android:layout_marginLeft="8dp"
            android:layout_marginRight="8dp"
            android:layout_marginStart="8dp"
            android:layout_marginTop="8dp"
            android:text="TestText"
            android:textColor="@android:color/white"
            android:textSize="24sp"
            android:visibility="visible"
            app:layout_constraintBottom_toBottomOf="@+id/toolbar_mainActivity"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintHorizontal_bias="0.535"
            app:layout_constraintStart_toStartOf="@+id/toolbar_mainActivity"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintVertical_bias="0.421"
            tools:text="Selection" />

        <android.support.constraint.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="1000dp"
            app:layout_constraintTop_toBottomOf="@+id/toolbar_mainActivity"
            tools:layout_editor_absoluteX="0dp"
            tools:layout_editor_absoluteY="73dp">

            <ImageButton
                android:id="@+id/imageButton"
                android:layout_width="210dp"
                android:layout_height="128dp"
                android:background="#00000000"
                android:scaleType="fitCenter"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintHorizontal_bias="1.0"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent"
                app:layout_constraintVertical_bias="0.026"
                app:srcCompat="@mipmap/test_dish_2" />

            <ImageButton
                android:id="@+id/imageButton2"
                android:layout_width="210dp"
                android:layout_height="128dp"
                android:background="#00000000"
                android:scaleType="fitCenter"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintHorizontal_bias="0.014"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent"
                app:layout_constraintVertical_bias="0.026"
                app:srcCompat="@mipmap/test_dish_1" />

        </android.support.constraint.ConstraintLayout>

    </android.support.constraint.ConstraintLayout>
</ScrollView>

<details>
<summary>英文:</summary>
I want to have an additional Toolbar with elements in it (like a back buttom and another bottom to directly go into a certain activity) at the bottom of the layout. The problem is that I use a Scroll View inside a Constraint Layout. How can I insert such a layout file. I tried it by drag and dropping a toolbar in the Scroll View. However, as the Scroll View is bigger than the layout in the layout editor of Android Studio, I did not know where to put it. It is also important that the two toolbars should be fixed. So whenever I scroll down, the toolbars should be visible all the time. 
Update: Does nobody have an idea. I am still strugelling with that
Here is the design I want to have (in a first step without any buttoms):
[![enter image description here][1]][1]
Here you can see the code of the XML layout file:
&lt;ScrollView xmlns:app=&quot;http://schemas.android.com/apk/res-auto&quot;
xmlns:tools=&quot;http://schemas.android.com/tools&quot;
android:layout_width=&quot;match_parent&quot;
android:layout_height=&quot;match_parent&quot;
xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot; &gt;
&lt;android.support.constraint.ConstraintLayout
android:layout_width=&quot;match_parent&quot;
android:layout_height=&quot;match_parent&quot;
tools:context=&quot;.MainActivity&quot;
tools:ignore=&quot;ExtraText&quot;&gt;
&#39;&lt;!--Learning: The following lines define a toolbar --&gt;&#39;
&lt;android.support.v7.widget.Toolbar
android:id=&quot;@+id/toolbar_mainActivity&quot;
android:layout_width=&quot;410dp&quot;
android:layout_height=&quot;50dp&quot;
android:background=&quot;#435cb53f&quot;
android:theme=&quot;@style/ThemeOverlay.AppCompat.ActionBar&quot;
app:layout_constraintBottom_toBottomOf=&quot;parent&quot;
app:layout_constraintEnd_toEndOf=&quot;parent&quot;
app:layout_constraintHorizontal_bias=&quot;0.0&quot;
app:layout_constraintStart_toStartOf=&quot;parent&quot;
app:layout_constraintTop_toTopOf=&quot;parent&quot;
app:layout_constraintVertical_bias=&quot;0.0&quot;
app:popupTheme=&quot;@style/ThemeOverlay.AppCompat.Light&quot;
app:titleTextColor=&quot;@android:color/holo_green_light&quot; /&gt;
&lt;TextView
android:id=&quot;@+id/textView_ToolBar_CocktailSelectionActivity&quot;
android:layout_width=&quot;wrap_content&quot;
android:layout_height=&quot;wrap_content&quot;
android:layout_marginBottom=&quot;8dp&quot;
android:layout_marginEnd=&quot;8dp&quot;
android:layout_marginLeft=&quot;8dp&quot;
android:layout_marginRight=&quot;8dp&quot;
android:layout_marginStart=&quot;8dp&quot;
android:layout_marginTop=&quot;8dp&quot;
android:text=&quot;TestText&quot;
android:textColor=&quot;@android:color/white&quot;
android:textSize=&quot;24sp&quot;
android:visibility=&quot;visible&quot;
app:layout_constraintBottom_toBottomOf=&quot;@+id/toolbar_mainActivity&quot;
app:layout_constraintEnd_toEndOf=&quot;parent&quot;
app:layout_constraintHorizontal_bias=&quot;0.535&quot;
app:layout_constraintStart_toStartOf=&quot;@+id/toolbar_mainActivity&quot;
app:layout_constraintTop_toTopOf=&quot;parent&quot;
app:layout_constraintVertical_bias=&quot;0.421&quot;
tools:text=&quot;Selection&quot; /&gt;
&lt;android.support.constraint.ConstraintLayout
android:layout_width=&quot;match_parent&quot;
android:layout_height=&quot;1000dp&quot;
app:layout_constraintTop_toBottomOf=&quot;@+id/toolbar_mainActivity&quot;
tools:layout_editor_absoluteX=&quot;0dp&quot;
tools:layout_editor_absoluteY=&quot;73dp&quot;&gt;
&lt;ImageButton
android:id=&quot;@+id/imageButton&quot;
android:layout_width=&quot;210dp&quot;
android:layout_height=&quot;128dp&quot;
android:background=&quot;#00000000&quot;
android:scaleType=&quot;fitCenter&quot;
app:layout_constraintBottom_toBottomOf=&quot;parent&quot;
app:layout_constraintEnd_toEndOf=&quot;parent&quot;
app:layout_constraintHorizontal_bias=&quot;1.0&quot;
app:layout_constraintStart_toStartOf=&quot;parent&quot;
app:layout_constraintTop_toTopOf=&quot;parent&quot;
app:layout_constraintVertical_bias=&quot;0.026&quot;
app:srcCompat=&quot;@mipmap/test_dish_2&quot; /&gt;
&lt;ImageButton
android:id=&quot;@+id/imageButton2&quot;
android:layout_width=&quot;210dp&quot;
android:layout_height=&quot;128dp&quot;
android:background=&quot;#00000000&quot;
android:scaleType=&quot;fitCenter&quot;
app:layout_constraintBottom_toBottomOf=&quot;parent&quot;
app:layout_constraintEnd_toEndOf=&quot;parent&quot;
app:layout_constraintHorizontal_bias=&quot;0.014&quot;
app:layout_constraintStart_toStartOf=&quot;parent&quot;
app:layout_constraintTop_toTopOf=&quot;parent&quot;
app:layout_constraintVertical_bias=&quot;0.026&quot;
app:srcCompat=&quot;@mipmap/test_dish_1&quot; /&gt;
&lt;/android.support.constraint.ConstraintLayout&gt;
&lt;/android.support.constraint.ConstraintLayout&gt;
&lt;/ScrollView&gt;
[1]: https://i.stack.imgur.com/pEsIX.png
</details>
# 答案1
**得分**: 1
以下是如何安排视图的方法。这是来自Android Studio设计师的示例:
_scrollView_ 是一个 _NestedScrollView_。
_scrollView_ 将独立滚动,工具栏将保持在原位(具有适当的约束条件)。类似这样:
```xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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"
tools:context=".MainActivity">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar_mainActivity"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="#435cb53f"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:title="顶部工具栏"
app:titleTextColor="@android:color/black" />
<android.support.v4.widget.NestedScrollView
android:id="@+id/scrollingView"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toTopOf="@id/bottomToolbar"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/toolbar_mainActivity">
<android.support.v7.widget.LinearLayoutCompat
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/textView_ToolBar_CocktailSelectionActivity"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:text="@string/material"
android:textColor="@android:color/black"
android:textSize="24sp" />
</android.support.v7.widget.LinearLayoutCompat>
</android.support.v4.widget.NestedScrollView>
<android.support.constraint.ConstraintLayout
android:id="@+id/bottomToolbar"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent">
<ImageButton
android:id="@+id/imageButton"
android:layout_width="210dp"
android:layout_height="128dp"
android:background="#00000000"
android:scaleType="fitCenter"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:srcCompat="@mipmap/ic_launcher" />
<ImageButton
android:id="@+id/imageButton2"
android:layout_width="210dp"
android:layout_height="128dp"
android:background="#00000000"
android:scaleType="fitCenter"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:srcCompat="@mipmap/ic_launcher" />
</android.support.constraint.ConstraintLayout>
</android.support.constraint.ConstraintLayout>

这是结果的示例:

底部附加工具栏与滚动视图

英文:

Here is how to arrange the views. This is from the Android Studio designer:

底部附加工具栏与滚动视图

The scrollingView is a NestedScrollView.

scrollingView will scroll independently of the toolbars and the toolbars will stay in place (with the proper constraints.) Something like this:

&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;android.support.constraint.ConstraintLayout xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;
xmlns:app=&quot;http://schemas.android.com/apk/res-auto&quot;
xmlns:tools=&quot;http://schemas.android.com/tools&quot;
android:layout_width=&quot;match_parent&quot;
android:layout_height=&quot;match_parent&quot;
tools:context=&quot;.MainActivity&quot;&gt;
&lt;android.support.v7.widget.Toolbar
android:id=&quot;@+id/toolbar_mainActivity&quot;
android:layout_width=&quot;0dp&quot;
android:layout_height=&quot;wrap_content&quot;
android:background=&quot;#435cb53f&quot;
android:theme=&quot;@style/ThemeOverlay.AppCompat.ActionBar&quot;
app:layout_constraintEnd_toEndOf=&quot;parent&quot;
app:layout_constraintStart_toStartOf=&quot;parent&quot;
app:layout_constraintTop_toTopOf=&quot;parent&quot;
app:popupTheme=&quot;@style/ThemeOverlay.AppCompat.Light&quot;
app:title=&quot;Top Toolbar&quot;
app:titleTextColor=&quot;@android:color/black&quot; /&gt;
&lt;android.support.v4.widget.NestedScrollView
android:id=&quot;@+id/scrollingView&quot;
android:layout_width=&quot;0dp&quot;
android:layout_height=&quot;0dp&quot;
app:layout_constraintBottom_toTopOf=&quot;@id/bottomToolbar&quot;
app:layout_constraintEnd_toEndOf=&quot;parent&quot;
app:layout_constraintStart_toStartOf=&quot;parent&quot;
app:layout_constraintTop_toBottomOf=&quot;@id/toolbar_mainActivity&quot;&gt;
&lt;android.support.v7.widget.LinearLayoutCompat
android:layout_width=&quot;match_parent&quot;
android:layout_height=&quot;wrap_content&quot;&gt;
&lt;TextView
android:id=&quot;@+id/textView_ToolBar_CocktailSelectionActivity&quot;
android:layout_width=&quot;match_parent&quot;
android:layout_height=&quot;wrap_content&quot;
android:layout_margin=&quot;8dp&quot;
android:text=&quot;@string/material&quot;
android:textColor=&quot;@android:color/black&quot;
android:textSize=&quot;24sp&quot; /&gt;
&lt;/android.support.v7.widget.LinearLayoutCompat&gt;
&lt;/android.support.v4.widget.NestedScrollView&gt;
&lt;android.support.constraint.ConstraintLayout
android:id=&quot;@+id/bottomToolbar&quot;
android:layout_width=&quot;0dp&quot;
android:layout_height=&quot;wrap_content&quot;
app:layout_constraintBottom_toBottomOf=&quot;parent&quot;
app:layout_constraintEnd_toEndOf=&quot;parent&quot;
app:layout_constraintStart_toStartOf=&quot;parent&quot;&gt;
&lt;ImageButton
android:id=&quot;@+id/imageButton&quot;
android:layout_width=&quot;210dp&quot;
android:layout_height=&quot;128dp&quot;
android:background=&quot;#00000000&quot;
android:scaleType=&quot;fitCenter&quot;
app:layout_constraintBottom_toBottomOf=&quot;parent&quot;
app:layout_constraintStart_toStartOf=&quot;parent&quot;
app:srcCompat=&quot;@mipmap/ic_launcher&quot; /&gt;
&lt;ImageButton
android:id=&quot;@+id/imageButton2&quot;
android:layout_width=&quot;210dp&quot;
android:layout_height=&quot;128dp&quot;
android:background=&quot;#00000000&quot;
android:scaleType=&quot;fitCenter&quot;
app:layout_constraintBottom_toBottomOf=&quot;parent&quot;
app:layout_constraintEnd_toEndOf=&quot;parent&quot;
app:srcCompat=&quot;@mipmap/ic_launcher&quot; /&gt;
&lt;/android.support.constraint.ConstraintLayout&gt;
&lt;/android.support.constraint.ConstraintLayout&gt;

This is the result:

底部附加工具栏与滚动视图

答案2

得分: 1

这是你提供的XML布局代码的翻译:

检查这个,我希望它对你有所帮助

<android.support.constraint.ConstraintLayout xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar_mainActivity"
        android:layout_width="410dp"
        android:layout_height="50dp"
        android:background="#435cb53f"
        android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.0"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
        app:titleTextColor="@android:color/holo_green_light">

        <TextView
            android:id="@+id/textView_ToolBar_CocktailSelectionActivity"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginBottom="8dp"
            android:layout_marginEnd="8dp"
            android:layout_marginLeft="8dp"
            android:layout_marginRight="8dp"
            android:layout_marginStart="8dp"
            android:layout_marginTop="8dp"
            android:text="TestText"
            android:gravity="center"
            android:layout_gravity="center"
            android:textColor="@android:color/white"
            android:textSize="24sp"
            tools:text="Selection" />
    </android.support.v7.widget.Toolbar>

    <ScrollView
        app:layout_constraintTop_toBottomOf="@id/toolbar_mainActivity"
        app:layout_constraintBottom_toTopOf="@id/bottom_layout"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        android:layout_width="0dp"
        android:layout_height="0dp">
        <android.support.constraint.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            tools:context=".MainActivity"
            tools:ignore="ExtraText">

            <ImageButton
                android:id="@+id/imageButton2"
                android:layout_width="0dp"
                android:layout_height="128dp"
                android:background="#00000000"
                android:scaleType="fitCenter"
                app:layout_constraintHorizontal_weight="1"
                app:layout_constraintEnd_toStartOf="@id/imageButton1"
                app:layout_constraintHorizontal_chainStyle="spread"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent"
                app:srcCompat="@drawable/logo" />

            <ImageButton
                android:id="@+id/imageButton1"
                android:layout_width="0dp"
                android:layout_height="128dp"
                android:background="#00000000"
                android:scaleType="fitCenter"
                app:layout_constraintHorizontal_weight="1"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toEndOf="@id/imageButton2"
                app:layout_constraintTop_toTopOf="parent"
                app:srcCompat="@drawable/logo" />

            <ImageButton
                android:id="@+id/imageButton3"
                android:layout_width="0dp"
                android:layout_height="128dp"
                android:background="#00000000"
                android:scaleType="fitCenter"
                app:layout_constraintVertical_chainStyle="packed"
                app:layout_constraintEnd_toStartOf="@id/imageButton4"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toBottomOf="@id/imageButton2"
                app:srcCompat="@drawable/logo" />

            <ImageButton
                android:id="@+id/imageButton4"
                android:layout_width="0dp"
                android:layout_height="128dp"
                android:background="#00000000"
                android:scaleType="fitCenter"
                app:layout_constraintStart_toEndOf="@id/imageButton3"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintTop_toBottomOf="@id/imageButton2"
                app:srcCompat="@drawable/logo" />

            <!-- 继续翻译其余部分 -->
        </android.support.constraint.ConstraintLayout>
    </ScrollView>

    <LinearLayout
        android:background="#FFD600"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        android:id="@+id/bottom_layout"
        android:layout_width="0dp"
        android:layout_height="70dp">

        <Button
            android:layout_gravity="center_vertical"
            android:id="@+id/button1"
            android:layout_width="0dp"
            android:layout_weight="1"
            android:text="One"
            android:layout_margin="4dp"
            android:layout_height="wrap_content" />

        <Button
            android:layout_gravity="center_vertical"
            android:id="@+id/button2"
            android:layout_weight="1"
            android:text="Two"
            android:layout_width="0dp"
            android:layout_margin="4dp"
            android:layout_height="wrap_content" />

        <Button
            android:layout_gravity="center_vertical"
            android:id="@+id/button3"
            android:layout_width="0dp"
            android:layout_weight="1"
            android:text="Three"
            android:layout_margin="4dp"
            android:layout_height="wrap_content" />

    </LinearLayout>
</android.support.constraint.ConstraintLayout>

请注意,我只翻译了XML布局代码的一部分,因为它非常长。如果你需要翻译其余部分或有其他问题,请随时提出。

英文:

check this ,I hope it helps you

&lt;android.support.constraint.ConstraintLayout xmlns:app=&quot;http://schemas.android.com/apk/res-auto&quot;
xmlns:tools=&quot;http://schemas.android.com/tools&quot;
xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;
android:layout_width=&quot;match_parent&quot;
android:layout_height=&quot;match_parent&quot;&gt;
&lt;android.support.v7.widget.Toolbar
android:id=&quot;@+id/toolbar_mainActivity&quot;
android:layout_width=&quot;410dp&quot;
android:layout_height=&quot;50dp&quot;
android:background=&quot;#435cb53f&quot;
android:theme=&quot;@style/ThemeOverlay.AppCompat.ActionBar&quot;
app:layout_constraintEnd_toEndOf=&quot;parent&quot;
app:layout_constraintStart_toStartOf=&quot;parent&quot;
app:layout_constraintTop_toTopOf=&quot;parent&quot;
app:layout_constraintVertical_bias=&quot;0.0&quot;
app:popupTheme=&quot;@style/ThemeOverlay.AppCompat.Light&quot;
app:titleTextColor=&quot;@android:color/holo_green_light&quot;&gt;
&lt;TextView
android:id=&quot;@+id/textView_ToolBar_CocktailSelectionActivity&quot;
android:layout_width=&quot;wrap_content&quot;
android:layout_height=&quot;wrap_content&quot;
android:layout_marginBottom=&quot;8dp&quot;
android:layout_marginEnd=&quot;8dp&quot;
android:layout_marginLeft=&quot;8dp&quot;
android:layout_marginRight=&quot;8dp&quot;
android:layout_marginStart=&quot;8dp&quot;
android:layout_marginTop=&quot;8dp&quot;
android:text=&quot;TestText&quot;
android:gravity=&quot;center&quot;
android:layout_gravity=&quot;center&quot;
android:textColor=&quot;@android:color/white&quot;
android:textSize=&quot;24sp&quot;
tools:text=&quot;Selection&quot; /&gt;
&lt;/android.support.v7.widget.Toolbar&gt;
&lt;ScrollView
app:layout_constraintTop_toBottomOf=&quot;@id/toolbar_mainActivity&quot;
app:layout_constraintBottom_toTopOf=&quot;@id/bottom_layout&quot;
app:layout_constraintEnd_toEndOf=&quot;parent&quot;
app:layout_constraintStart_toStartOf=&quot;parent&quot;
android:layout_width=&quot;0dp&quot;
android:layout_height=&quot;0dp&quot;&gt;
&lt;android.support.constraint.ConstraintLayout
android:layout_width=&quot;match_parent&quot;
android:layout_height=&quot;wrap_content&quot;
tools:context=&quot;.MainActivity&quot;
tools:ignore=&quot;ExtraText&quot;&gt;
&lt;ImageButton
android:id=&quot;@+id/imageButton2&quot;
android:layout_width=&quot;0dp&quot;
android:layout_height=&quot;128dp&quot;
android:background=&quot;#00000000&quot;
android:scaleType=&quot;fitCenter&quot;
app:layout_constraintHorizontal_weight=&quot;1&quot;
app:layout_constraintEnd_toStartOf=&quot;@id/imageButton1&quot;
app:layout_constraintHorizontal_chainStyle=&quot;spread&quot;
app:layout_constraintStart_toStartOf=&quot;parent&quot;
app:layout_constraintTop_toTopOf=&quot;parent&quot;
app:srcCompat=&quot;@drawable/logo&quot; /&gt;
&lt;ImageButton
android:id=&quot;@+id/imageButton1&quot;
android:layout_width=&quot;0dp&quot;
android:layout_height=&quot;128dp&quot;
android:background=&quot;#00000000&quot;
android:scaleType=&quot;fitCenter&quot;
app:layout_constraintHorizontal_weight=&quot;1&quot;
app:layout_constraintEnd_toEndOf=&quot;parent&quot;
app:layout_constraintStart_toEndOf=&quot;@id/imageButton2&quot;
app:layout_constraintTop_toTopOf=&quot;parent&quot;
app:srcCompat=&quot;@drawable/logo&quot; /&gt;
&lt;ImageButton
android:id=&quot;@+id/imageButton3&quot;
android:layout_width=&quot;0dp&quot;
android:layout_height=&quot;128dp&quot;
android:background=&quot;#00000000&quot;
android:scaleType=&quot;fitCenter&quot;
app:layout_constraintVertical_chainStyle=&quot;packed&quot;
app:layout_constraintEnd_toStartOf=&quot;@id/imageButton4&quot;
app:layout_constraintStart_toStartOf=&quot;parent&quot;
app:layout_constraintTop_toBottomOf=&quot;@id/imageButton2&quot;
app:srcCompat=&quot;@drawable/logo&quot; /&gt;
&lt;ImageButton
android:id=&quot;@+id/imageButton4&quot;
android:layout_width=&quot;0dp&quot;
android:layout_height=&quot;128dp&quot;
android:background=&quot;#00000000&quot;
android:scaleType=&quot;fitCenter&quot;
app:layout_constraintStart_toEndOf=&quot;@id/imageButton3&quot;
app:layout_constraintEnd_toEndOf=&quot;parent&quot;
app:layout_constraintTop_toBottomOf=&quot;@id/imageButton2&quot;
app:srcCompat=&quot;@drawable/logo&quot; /&gt;
&lt;ImageButton
android:id=&quot;@+id/imageButton5&quot;
android:layout_width=&quot;0dp&quot;
android:layout_height=&quot;128dp&quot;
android:background=&quot;#00000000&quot;
android:scaleType=&quot;fitCenter&quot;
app:layout_constraintVertical_chainStyle=&quot;packed&quot;
app:layout_constraintEnd_toStartOf=&quot;@id/imageButton6&quot;
app:layout_constraintStart_toStartOf=&quot;parent&quot;
app:layout_constraintTop_toBottomOf=&quot;@id/imageButton3&quot;
app:srcCompat=&quot;@drawable/logo&quot; /&gt;
&lt;ImageButton
android:id=&quot;@+id/imageButton6&quot;
android:layout_width=&quot;0dp&quot;
android:layout_height=&quot;128dp&quot;
android:background=&quot;#00000000&quot;
android:scaleType=&quot;fitCenter&quot;
app:layout_constraintStart_toEndOf=&quot;@id/imageButton3&quot;
app:layout_constraintEnd_toEndOf=&quot;parent&quot;
app:layout_constraintTop_toBottomOf=&quot;@id/imageButton3&quot;
app:srcCompat=&quot;@drawable/logo&quot; /&gt;
&lt;ImageButton
android:id=&quot;@+id/imageButton7&quot;
android:layout_width=&quot;0dp&quot;
android:layout_height=&quot;128dp&quot;
android:background=&quot;#00000000&quot;
android:scaleType=&quot;fitCenter&quot;
app:layout_constraintVertical_chainStyle=&quot;packed&quot;
app:layout_constraintEnd_toStartOf=&quot;@id/imageButton8&quot;
app:layout_constraintStart_toStartOf=&quot;parent&quot;
app:layout_constraintTop_toBottomOf=&quot;@id/imageButton5&quot;
app:srcCompat=&quot;@drawable/logo&quot; /&gt;
&lt;ImageButton
android:id=&quot;@+id/imageButton8&quot;
android:layout_width=&quot;0dp&quot;
android:layout_height=&quot;128dp&quot;
android:background=&quot;#00000000&quot;
android:scaleType=&quot;fitCenter&quot;
app:layout_constraintStart_toEndOf=&quot;@id/imageButton7&quot;
app:layout_constraintEnd_toEndOf=&quot;parent&quot;
app:layout_constraintTop_toBottomOf=&quot;@id/imageButton5&quot;
app:srcCompat=&quot;@drawable/logo&quot; /&gt;
&lt;ImageButton
android:id=&quot;@+id/imageButton9&quot;
android:layout_width=&quot;0dp&quot;
android:layout_height=&quot;128dp&quot;
android:background=&quot;#00000000&quot;
android:scaleType=&quot;fitCenter&quot;
app:layout_constraintVertical_chainStyle=&quot;packed&quot;
app:layout_constraintEnd_toStartOf=&quot;@id/imageButton10&quot;
app:layout_constraintStart_toStartOf=&quot;parent&quot;
app:layout_constraintTop_toBottomOf=&quot;@id/imageButton7&quot;
app:srcCompat=&quot;@drawable/logo&quot; /&gt;
&lt;ImageButton
android:id=&quot;@+id/imageButton10&quot;
android:layout_width=&quot;0dp&quot;
android:layout_height=&quot;128dp&quot;
android:background=&quot;#00000000&quot;
android:scaleType=&quot;fitCenter&quot;
app:layout_constraintStart_toEndOf=&quot;@id/imageButton9&quot;
app:layout_constraintEnd_toEndOf=&quot;parent&quot;
app:layout_constraintTop_toBottomOf=&quot;@id/imageButton7&quot;
app:srcCompat=&quot;@drawable/logo&quot; /&gt;
&lt;ImageButton
android:id=&quot;@+id/imageButton11&quot;
android:layout_width=&quot;0dp&quot;
android:layout_height=&quot;128dp&quot;
android:background=&quot;#00000000&quot;
android:scaleType=&quot;fitCenter&quot;
app:layout_constraintVertical_chainStyle=&quot;packed&quot;
app:layout_constraintEnd_toStartOf=&quot;@id/imageButton12&quot;
app:layout_constraintStart_toStartOf=&quot;parent&quot;
app:layout_constraintTop_toBottomOf=&quot;@id/imageButton9&quot;
app:srcCompat=&quot;@drawable/logo&quot; /&gt;
&lt;ImageButton
android:id=&quot;@+id/imageButton12&quot;
android:layout_width=&quot;0dp&quot;
android:layout_height=&quot;128dp&quot;
android:background=&quot;#00000000&quot;
android:scaleType=&quot;fitCenter&quot;
app:layout_constraintStart_toEndOf=&quot;@id/imageButton11&quot;
app:layout_constraintEnd_toEndOf=&quot;parent&quot;
app:layout_constraintTop_toBottomOf=&quot;@id/imageButton9&quot;
app:srcCompat=&quot;@drawable/logo&quot; /&gt;
&lt;/android.support.constraint.ConstraintLayout&gt;
&lt;/ScrollView&gt;
&lt;LinearLayout
android:background=&quot;#FFD600&quot;
app:layout_constraintBottom_toBottomOf=&quot;parent&quot;
app:layout_constraintEnd_toEndOf=&quot;parent&quot;
app:layout_constraintStart_toStartOf=&quot;parent&quot;
android:id=&quot;@+id/bottom_layout&quot;
android:layout_width=&quot;0dp&quot;
android:layout_height=&quot;70dp&quot;&gt;
&lt;Button
android:layout_gravity=&quot;center_vertical&quot;
android:id=&quot;@+id/button1&quot;
android:layout_width=&quot;0dp&quot;
android:layout_weight=&quot;1&quot;
android:text=&quot;One&quot;
android:layout_margin=&quot;4dp&quot;
android:layout_height=&quot;wrap_content&quot;/&gt;
&lt;Button
android:layout_gravity=&quot;center_vertical&quot;
android:id=&quot;@+id/button2&quot;
android:layout_weight=&quot;1&quot;
android:text=&quot;Two&quot;
android:layout_width=&quot;0dp&quot;
android:layout_margin=&quot;4dp&quot;
android:layout_height=&quot;wrap_content&quot;/&gt;
&lt;Button
android:layout_gravity=&quot;center_vertical&quot;
android:id=&quot;@+id/button3&quot;
android:layout_width=&quot;0dp&quot;
android:layout_weight=&quot;1&quot;
android:text=&quot;Three&quot;
android:layout_margin=&quot;4dp&quot;
android:layout_height=&quot;wrap_content&quot;/&gt;
&lt;/LinearLayout&gt;
&lt;/android.support.constraint.ConstraintLayout&gt;

huangapple
  • 本文由 发表于 2020年1月7日 00:24:06
  • 转载请务必保留本文链接:https://go.coder-hub.com/59615559.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定