Open michaelbukachi opened 7 years ago
I've implemented the layout in a bottom sheet layout. But I'm getting an empty blank screen. Am I missing something? Here's my layout:
<?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" android:id="@+id/bottomSheet" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="400dp" app:behavior_hideable="true" app:behavior_peekHeight="0dp" android:background="@android:color/white" app:layout_behavior="android.support.design.widget.BottomSheetBehavior"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent"> <com.alamkanak.weekview.WeekView android:id="@+id/weekView" android:layout_width="match_parent" android:layout_height="match_parent" app:eventTextColor="@android:color/white" app:textSize="12sp" app:hourHeight="60dp" app:headerColumnPadding="8dp" app:headerColumnTextColor="#8f000000" app:headerRowPadding="12dp" app:columnGap="8dp" app:noOfVisibleDays="3" app:headerColumnBackground="#ffefefef" app:dayBackgroundColor="#05000000" app:todayBackgroundColor="#1848adff" app:todayHeaderTextColor="@color/colorAccent"/> </LinearLayout> </android.support.v4.widget.NestedScrollView>
same as #385
I've implemented the layout in a bottom sheet layout. But I'm getting an empty blank screen. Am I missing something? Here's my layout: