activity_charging_ios.xml raw
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:tools="http://schemas.android.com/tools"
4 android:id="@+id/content"
5 android:layout_width="match_parent"
6 android:layout_height="wrap_content"
7 android:orientation="vertical"
8 tools:context="io.github.domi04151309.alwayson.actions.ChargingIOSActivity"
9 tools:ignore="UseCompoundDrawables">
10
11 <ImageView
12 android:id="@+id/batteryIcn"
13 android:layout_width="match_parent"
14 android:layout_height="192dp"
15 android:contentDescription="@null"
16 android:rotation="90"
17 android:tint="@color/charging"
18 android:alpha=".5"
19 android:src="@drawable/ic_battery_unknown"
20 tools:ignore="UseAppTint" />
21
22 <TextView
23 android:id="@+id/batteryTxt"
24 android:layout_width="match_parent"
25 android:layout_height="wrap_content"
26 android:text="@string/loading"
27 android:textAlignment="center"
28 android:textColor="@android:color/white"
29 android:textSize="24sp" />
30 </LinearLayout>
31