Skip to content
Snippets Groups Projects
Select Git revision
  • 7b56c01297d81dffb7e60ee13a5113ed67763097
  • master default
  • patch-1
3 results

activity_main.xml

Blame
  • Forked from Android 2017 / OD-System
    Source project has a limited visibility.
    activity_main.xml 739 B
    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:id="@+id/activity_main"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context="com.darshanbshah.odsystem.MainActivity">
    
        <Button
            android:text="Sign Out"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/sign_out_button"
            android:onClick="signOut"
            style="@android:style/Widget.Material.Button.ButtonBar.AlertDialog"
            android:layout_alignParentTop="true"
            android:layout_alignParentEnd="true" />
    </RelativeLayout>