Skip to content

Instantly share code, notes, and snippets.

@adityaoberai
Created March 6, 2021 12:23
FakeACall Wear OS App View
<?xml version="1.0" encoding="utf-8"?>
<android.support.wear.widget.BoxInsetLayout 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"
android:padding="@dimen/box_inset_layout_padding"
tools:deviceIds="wear">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="@dimen/inner_frame_layout_padding"
app:boxedEdges="all"
android:minWidth="25px"
android:minHeight="25px">
<Button
android:text="Call Now"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/button1"/>
</FrameLayout>
</android.support.wear.widget.BoxInsetLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment