aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/res/layout/kau_about_section_main.xml
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-07-08 20:25:23 -0700
committerAllan Wang <me@allanwang.ca>2017-07-08 20:25:23 -0700
commit81996038462de1be86643e95d262933c4b96c551 (patch)
tree39423b28217251e7051f86e9e4f80c47bcba20b2 /core/src/main/res/layout/kau_about_section_main.xml
parent880d433e475e5be4e5d91afac145b490f9a959b7 (diff)
downloadkau-81996038462de1be86643e95d262933c4b96c551.tar.gz
kau-81996038462de1be86643e95d262933c4b96c551.tar.bz2
kau-81996038462de1be86643e95d262933c4b96c551.zip
Move components to separate modules
Diffstat (limited to 'core/src/main/res/layout/kau_about_section_main.xml')
-rw-r--r--core/src/main/res/layout/kau_about_section_main.xml46
1 files changed, 0 insertions, 46 deletions
diff --git a/core/src/main/res/layout/kau_about_section_main.xml b/core/src/main/res/layout/kau_about_section_main.xml
deleted file mode 100644
index 40d8dfb..0000000
--- a/core/src/main/res/layout/kau_about_section_main.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<android.support.v4.widget.NestedScrollView 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"
- tools:showIn="@layout/kau_activity_about">
-
- <android.support.constraint.ConstraintLayout
- android:id="@+id/about_main_container"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
-
- <ca.allanwang.kau.views.CutoutView
- android:id="@+id/about_main_cutout"
- android:layout_width="0dp"
- android:layout_height="@dimen/kau_about_header_height"
- android:minHeight="@dimen/kau_about_header_height"
- app:foregroundColor="?android:colorAccent"
- app:heightPercentageToScreen="0.5"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent" />
-
- <FrameLayout
- android:id="@+id/about_main_bottom_container"
- android:layout_width="0dp"
- android:layout_height="2000dp"
- android:background="?android:attr/colorBackground"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toBottomOf="@id/about_main_cutout">
-
- <TextView
- android:id="@+id/about_main_bottom_text"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:layout_margin="@dimen/activity_horizontal_margin" />
-
- </FrameLayout>
-
- </android.support.constraint.ConstraintLayout>
-
-</android.support.v4.widget.NestedScrollView>