Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Created May 23, 2018 06:37
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 ssaurel/941943fabd00990d9c541f174f17dc48 to your computer and use it in GitHub Desktop.
Save ssaurel/941943fabd00990d9c541f174f17dc48 to your computer and use it in GitHub Desktop.
UI for the WiFi Scanner App on the SSaurel's Channel
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:padding="10dp"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@+id/wifiList"
android:layout_width="match_parent"
android:layout_height="312dp"
android:layout_weight="0.97"/>
<Button
android:id="@+id/scanBtn"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_gravity="bottom"
android:layout_margin="15dp"
android:background="@android:color/holo_red_light"
android:text="Scan WiFi"/>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment