54 lines
1.9 KiB
XML
Executable File
54 lines
1.9 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:weightSum="10"
|
|
android:gravity="center"
|
|
xmlns:coverflow="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical">
|
|
|
|
<it.moondroid.coverflow.components.ui.containers.FeatureCoverFlow
|
|
android:id="@+id/magazines_coverflow"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="4"
|
|
coverflow:coverHeight="90dp"
|
|
coverflow:coverWidth="60dp"
|
|
coverflow:maxScaleFactor="1.5"
|
|
coverflow:reflectionGap="0px"
|
|
coverflow:rotationThreshold="0.5"
|
|
coverflow:scalingThreshold="0.5"
|
|
coverflow:spacing="0.85" />
|
|
|
|
<TextSwitcher
|
|
android:id="@+id/magazine_title_switcher"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingBottom="16dp"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_centerVertical="true"
|
|
|
|
/>
|
|
<it.moondroid.coverflow.components.ui.containers.FeatureCoverFlow
|
|
android:id="@+id/articles_coverflow"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="6"
|
|
coverflow:coverHeight="180dp"
|
|
coverflow:coverWidth="120dp"
|
|
coverflow:maxScaleFactor="1.5"
|
|
coverflow:reflectionGap="0px"
|
|
coverflow:rotationThreshold="0.5"
|
|
coverflow:scalingThreshold="0.5"
|
|
coverflow:spacing="0.6" />
|
|
<TextSwitcher
|
|
android:id="@+id/article_title_switcher"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingBottom="16dp"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_centerVertical="true"
|
|
|
|
/>
|
|
|
|
</LinearLayout> |