]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/res/layout/view_headers_bottom_appbar.xml
Add a flow layout to the Headers SSL buttons.
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / view_headers_bottom_appbar.xml
index 0e05cafde9fee52156f4652f59c5388a734d7b16..eddf4477d3250013fdafab27bfcff44b903d527d 100644 (file)
                     android:orientation="vertical"
                     android:layout_margin="10dp" >
 
+                    <!-- SSL information. -->
+                    <TextView
+                        android:id="@+id/ssl_information_title_textview"
+                        android:layout_height="wrap_content"
+                        android:layout_width="match_parent"
+                        android:text="@string/ssl_information"
+                        android:textAlignment="center"
+                        android:textSize="18sp"
+                        android:textColor="@color/blue_text"
+                        android:textStyle="bold" />
+
+                    <TextView
+                        android:id="@+id/ssl_information_textview"
+                        android:layout_height="wrap_content"
+                        android:layout_width="match_parent"
+                        android:textIsSelectable="true"
+                        android:layout_marginBottom="8dp" />
+
+                    <!-- SSL Buttons. -->
+                    <androidx.constraintlayout.widget.ConstraintLayout
+                        android:id="@+id/ssl_buttons_constraintlayout"
+                        android:layout_height="wrap_content"
+                        android:layout_width="match_parent"
+                        android:layout_marginBottom="16dp"
+                        tools:ignore="MissingConstraints" >
+
+                        <androidx.constraintlayout.helper.widget.Flow
+                            android:layout_height="wrap_content"
+                            android:layout_width="match_parent"
+                            app:constraint_referenced_ids="ciphers_button,certificate_button"
+                            app:flow_wrapMode="chain"
+                            app:flow_firstHorizontalStyle="packed"
+                            app:flow_horizontalGap="15dp" />
+
+                        <androidx.appcompat.widget.AppCompatButton
+                            android:id="@+id/ciphers_button"
+                            android:layout_height="wrap_content"
+                            android:layout_width="wrap_content"
+                            android:text="@string/ciphers"
+                            android:onClick="showCiphers"
+                            app:backgroundTint="@color/button_background_selector"
+                            android:textColor="@color/button_text_selector"
+                            tools:ignore="ButtonStyle" />
+
+                        <androidx.appcompat.widget.AppCompatButton
+                            android:id="@+id/certificate_button"
+                            android:layout_height="wrap_content"
+                            android:layout_width="wrap_content"
+                            android:text="@string/certificate"
+                            android:onClick="showCertificate"
+                            app:backgroundTint="@color/button_background_selector"
+                            android:textColor="@color/button_text_selector"
+                            tools:ignore="ButtonStyle" />
+                    </androidx.constraintlayout.widget.ConstraintLayout>
+
                     <!-- Request headers. -->
                     <TextView
                         android:id="@+id/request_headers_title_textview"