2019-07-22 20:35:57 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2023-06-05 12:21:15 +02:00
|
|
|
|
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: 2019 Matthijs Tijink <matthijstijink@gmail.com>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
|
|
-->
|
|
|
|
|
2020-07-08 11:03:04 +05:30
|
|
|
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-03-07 10:55:47 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2019-07-22 20:35:57 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
2020-07-08 11:03:04 +05:30
|
|
|
android:clickable="true"
|
2021-03-07 10:55:47 +00:00
|
|
|
android:focusable="true"
|
2019-07-22 20:35:57 +00:00
|
|
|
android:drawablePadding="8dp"
|
|
|
|
android:paddingTop="16dp"
|
|
|
|
android:paddingBottom="12dp"
|
2021-03-07 10:55:47 +00:00
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="16dp"
|
|
|
|
android:text="@string/no_wifi"
|
|
|
|
app:drawableStartCompat="@drawable/ic_wifi"
|
|
|
|
app:drawableLeftCompat="@drawable/ic_wifi">
|
2019-07-22 20:35:57 +00:00
|
|
|
|
|
|
|
</TextView>
|