Skip to content

Instantly share code, notes, and snippets.

@codingwithsara
Created September 20, 2020 05:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codingwithsara/a1399ee9f27931cd6496bbc4905e00bb to your computer and use it in GitHub Desktop.
Save codingwithsara/a1399ee9f27931cd6496bbc4905e00bb to your computer and use it in GitHub Desktop.
Java (Android Studio) Tutorial - Battery Checker -
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:orientation="vertical"
android:gravity="center_horizontal"
android:background="@android:color/white">
<TextView
android:id="@+id/statusLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Charging"
android:textSize="24sp"
android:layout_marginTop="60dp"/>
<ImageView
android:id="@+id/batteryImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/b50"
android:layout_marginTop="40dp"/>
<TextView
android:id="@+id/percentageLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="49%"
android:textSize="24sp"
android:layout_marginTop="30dp"/>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment