Warning, /network/kdeconnect-android/res/layout/activity_about_kde.xml is written in an unsupported language. File is not indexed.

0001 <?xml version="1.0" encoding="utf-8"?>
0002 
0003 <!--
0004 SPDX-FileCopyrightText: 2021 Maxim Leshchenko <cnmaks90@gmail.com>
0005 
0006 SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0007 -->
0008 
0009 <androidx.coordinatorlayout.widget.CoordinatorLayout
0010     xmlns:android="http://schemas.android.com/apk/res/android"
0011     xmlns:app="http://schemas.android.com/apk/res-auto"
0012     android:layout_width="match_parent"
0013     android:layout_height="match_parent"
0014     xmlns:tools="http://schemas.android.com/tools"
0015     tools:context="org.kde.kdeconnect.UserInterface.About.AboutKDEActivity"
0016     android:fitsSystemWindows="true">
0017 
0018     <include layout="@layout/toolbar" android:id="@+id/toolbar_layout" />
0019 
0020     <ScrollView
0021         android:layout_width="match_parent"
0022         android:layout_height="match_parent"
0023         android:fillViewport="true"
0024         app:layout_behavior="@string/appbar_scrolling_view_behavior">
0025 
0026         <LinearLayout
0027             android:id="@+id/about_layout"
0028             android:orientation="vertical"
0029             android:layout_width="match_parent"
0030             android:layout_height="wrap_content">
0031 
0032             <TextView
0033                 android:layout_width="match_parent"
0034                 android:layout_height="wrap_content"
0035                 android:drawablePadding="8dp"
0036                 android:gravity="center_vertical"
0037                 android:layout_margin="24dp"
0038                 android:text="@string/kde_be_free"
0039                 android:textAppearance="?attr/textAppearanceHeadline6"
0040                 app:drawableLeftCompat="@drawable/ic_kde_48dp"
0041                 app:drawableStartCompat="@drawable/ic_kde_48dp"
0042                 app:drawableTint="@color/text_color" />
0043 
0044             <com.google.android.material.card.MaterialCardView
0045                 xmlns:card_view="https://schemas.android.com/apk/res-auto"
0046                 android:layout_width="match_parent"
0047                 android:layout_height="wrap_content"
0048                 android:layout_marginLeft="12dp"
0049                 android:layout_marginStart="12dp"
0050                 android:layout_marginRight="12dp"
0051                 android:layout_marginEnd="12dp"
0052                 android:layout_marginBottom="12dp"
0053                 card_view:cardCornerRadius="12dp"
0054                 card_view:cardUseCompatPadding="true">
0055 
0056                 <TextView
0057                     android:id="@+id/about_text_view"
0058                     android:layout_height="match_parent"
0059                     android:layout_width="match_parent"
0060                     android:padding="12dp"
0061                     android:textIsSelectable="true"
0062                     tools:text="@string/about_kde_about" />
0063             </com.google.android.material.card.MaterialCardView>
0064 
0065             <com.google.android.material.card.MaterialCardView
0066                 xmlns:card_view="https://schemas.android.com/apk/res-auto"
0067                 android:layout_width="match_parent"
0068                 android:layout_height="wrap_content"
0069                 android:layout_marginLeft="12dp"
0070                 android:layout_marginStart="12dp"
0071                 android:layout_marginRight="12dp"
0072                 android:layout_marginEnd="12dp"
0073                 android:layout_marginBottom="12dp"
0074                 card_view:cardCornerRadius="12dp"
0075                 card_view:cardUseCompatPadding="true">
0076 
0077                 <TextView
0078                     android:id="@+id/report_bugs_or_wishes_text_view"
0079                     android:layout_height="match_parent"
0080                     android:layout_width="match_parent"
0081                     android:padding="12dp"
0082                     android:textIsSelectable="true"
0083                     tools:text="@string/about_kde_report_bugs_or_wishes" />
0084             </com.google.android.material.card.MaterialCardView>
0085 
0086             <com.google.android.material.card.MaterialCardView
0087                 xmlns:card_view="https://schemas.android.com/apk/res-auto"
0088                 android:layout_width="match_parent"
0089                 android:layout_height="wrap_content"
0090                 android:layout_marginLeft="12dp"
0091                 android:layout_marginStart="12dp"
0092                 android:layout_marginRight="12dp"
0093                 android:layout_marginEnd="12dp"
0094                 android:layout_marginBottom="12dp"
0095                 card_view:cardCornerRadius="12dp"
0096                 card_view:cardUseCompatPadding="true">
0097 
0098                 <TextView
0099                     android:id="@+id/join_kde_text_view"
0100                     android:layout_height="match_parent"
0101                     android:layout_width="match_parent"
0102                     android:padding="12dp"
0103                     android:textIsSelectable="true"
0104                     tools:text="@string/about_kde_join_kde" />
0105             </com.google.android.material.card.MaterialCardView>
0106 
0107             <com.google.android.material.card.MaterialCardView
0108                 xmlns:card_view="https://schemas.android.com/apk/res-auto"
0109                 android:layout_width="match_parent"
0110                 android:layout_height="wrap_content"
0111                 android:layout_marginLeft="12dp"
0112                 android:layout_marginStart="12dp"
0113                 android:layout_marginRight="12dp"
0114                 android:layout_marginEnd="12dp"
0115                 android:layout_marginBottom="12dp"
0116                 card_view:cardCornerRadius="12dp"
0117                 card_view:cardUseCompatPadding="true">
0118 
0119                 <TextView
0120                     android:id="@+id/support_kde_text_view"
0121                     android:layout_height="match_parent"
0122                     android:layout_width="match_parent"
0123                     android:padding="12dp"
0124                     android:textIsSelectable="true"
0125                     tools:text="@string/about_kde_support_kde" />
0126             </com.google.android.material.card.MaterialCardView>
0127 
0128             <ImageView
0129                 android:layout_width="wrap_content"
0130                 android:layout_height="256dp"
0131                 android:layout_gravity="center"
0132                 android:contentDescription="@string/konqi"
0133                 android:paddingBottom="12dp"
0134                 android:src="@drawable/konqi" />
0135         </LinearLayout>
0136     </ScrollView>
0137 </androidx.coordinatorlayout.widget.CoordinatorLayout>