1<!-- 2 ~ Copyright (C) 2024 The Android Open Source Project 3 ~ 4 ~ Licensed under the Apache License, Version 2.0 (the "License"); 5 ~ you may not use this file except in compliance with the License. 6 ~ You may obtain a copy of the License at 7 ~ 8 ~ http://www.apache.org/licenses/LICENSE-2.0 9 ~ 10 ~ Unless required by applicable law or agreed to in writing, software 11 ~ distributed under the License is distributed on an "AS IS" BASIS, 12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 ~ See the License for the specific language governing permissions and 14 ~ limitations under the License. 15 --> 16<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 17 android:layout_width="match_parent" 18 android:layout_height="wrap_content" 19 android:layout_marginVertical="@dimen/spacing_normal" 20 android:baselineAligned="false" 21 android:orientation="horizontal"> 22 23 <FrameLayout 24 android:layout_width="0dp" 25 android:layout_height="match_parent" 26 android:layout_weight="1"> 27 28 <Button 29 android:id="@+id/export_import_cancel_button" 30 android:minHeight="@dimen/button_size" 31 android:layout_width="wrap_content" 32 android:layout_height="wrap_content" 33 android:layout_gravity="start|center_vertical" 34 android:gravity="center" 35 android:maxLines="2" 36 style="@style/Widget.HealthConnect.Button.Borderless" /> 37 </FrameLayout> 38 39 <FrameLayout 40 android:layout_width="0dp" 41 android:layout_height="match_parent" 42 android:layout_weight="1"> 43 44 <Button 45 android:id="@+id/export_import_next_button" 46 android:layout_width="wrap_content" 47 android:layout_height="wrap_content" 48 android:minHeight="@dimen/button_size" 49 android:layout_gravity="end|center_vertical" 50 style="@style/Widget.HealthConnect.DialogButton.Full" /> 51 52 </FrameLayout> 53</LinearLayout>