Skip to content

Instantly share code, notes, and snippets.

View hinoobmaster's full-sized avatar

Donny Rhomanzah hinoobmaster

  • Core.id
  • Indonesia
View GitHub Profile
@hinoobmaster
hinoobmaster / ezkubectl.sh
Created November 10, 2022 04:02
Kubectl Easy Script
#DELETE ALL EVICTED PODS
kubectl delete pod --field-selector="status.phase==Failed"
@hinoobmaster
hinoobmaster / Android Cheatsheet .md
Last active December 7, 2018 15:49
Android Cheat Sheet -

Membuat Splash Screen

Goal: Membuat tampilan splash screen dan akan muncul sebelum Activity utama dimuat.

  1. Buat buat activity baru, misal dengan nama Splash, akan menghasilkan 2 file, yaitu Splash.java dan activity-splash.xml.

  2. Kreasikan tampilah splashscreen di file activity-splash.xml misal dengan menampilkan logo di tengah-tengah layar dan sebuah spinner (ProgressBar) dibawahnya:

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"