mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
23 lines
746 B
XML
Vendored
23 lines
746 B
XML
Vendored
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/item_detail_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".ItemDetailActivity"
|
|
tools:ignore="MergeRootFrame" >
|
|
|
|
|
|
<FrameLayout
|
|
android:id="@+id/container"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
<Button
|
|
android:id="@+id/login"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Sign in" />
|
|
|
|
</FrameLayout>
|
|
|
|
</FrameLayout> |