This commit is contained in:
Plac3hold3r 2018-03-25 12:41:56 +02:00
Родитель c5d964152a
Коммит 315ca39a8e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 00913B78D9D07AF4
1 изменённых файлов: 86 добавлений и 62 удалений

Просмотреть файл

@ -2,71 +2,95 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_frame"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:layout_height="match_parent"
android:orientation="vertical">
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Show Child"
local:MvxBind="Click ShowChildCommand;" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Show Modal"
local:MvxBind="Click ShowModalCommand;" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Show Modal Navigation"
local:MvxBind="Click ShowModalNavCommand;" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Show Tabs"
local:MvxBind="Click ShowTabsCommand;" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Show Master/Detail"
local:MvxBind="Click ShowSplitCommand;" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Show Override Attribute"
local:MvxBind="Click ShowOverrideAttributeCommand" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Show BottomSheet"
local:MvxBind="Click ShowSheetCommand" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Show WithDictionaryConversion Binding"
local:MvxBind="Click ShowDictionaryBindingCommand" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Show CollectionView"
local:MvxBind="Click ShowCollectionViewCommand;" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Show Shared Element transition"
local:MvxBind="Click ShowSharedElementsCommand;" />
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:layout_weight="1">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Show Child"
local:MvxBind="Click ShowChildCommand;" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Show Modal"
local:MvxBind="Click ShowModalCommand;" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Show Modal Navigation"
local:MvxBind="Click ShowModalNavCommand;" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Show Tabs"
local:MvxBind="Click ShowTabsCommand;" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Show Master/Detail"
local:MvxBind="Click ShowSplitCommand;" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Show Override Attribute"
local:MvxBind="Click ShowOverrideAttributeCommand" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Show BottomSheet"
local:MvxBind="Click ShowSheetCommand" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Show WithDictionaryConversion Binding"
local:MvxBind="Click ShowDictionaryBindingCommand" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Show CollectionView"
local:MvxBind="Click ShowCollectionViewCommand;" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Show Shared Element transition"
local:MvxBind="Click ShowSharedElementsCommand;" />
</LinearLayout>
</ScrollView>
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
android:layout_height="160dp"/>
</LinearLayout>