update the layout listing event types
This commit is contained in:
parent
4d49c14f44
commit
f16cfc63ca
|
@ -15,6 +15,10 @@ class ManageEventTypesActivity : SimpleActivity() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
updateTextColors(manage_event_types_scrollview)
|
manage_event_types_fab.setOnClickListener {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
updateTextColors(manage_event_types_coordinator)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,15 +1,27 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<ScrollView
|
<android.support.design.widget.CoordinatorLayout
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:id="@+id/manage_event_types_scrollview"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
android:id="@+id/manage_event_types_coordinator"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content">
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
<LinearLayout
|
<android.support.v7.widget.RecyclerView
|
||||||
android:id="@+id/manage_event_types_holder"
|
android:id="@+id/manage_event_types_list"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:orientation="vertical">
|
android:clipToPadding="false"
|
||||||
|
android:paddingLeft="@dimen/activity_margin"
|
||||||
|
app:layoutManager="android.support.v7.widget.LinearLayoutManager"/>
|
||||||
|
|
||||||
</LinearLayout>
|
<com.simplemobiletools.commons.views.MyFloatingActionButton
|
||||||
</ScrollView>
|
android:id="@+id/manage_event_types_fab"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_gravity="bottom|end"
|
||||||
|
android:layout_margin="@dimen/activity_margin"
|
||||||
|
android:src="@drawable/ic_plus"
|
||||||
|
app:backgroundTint="@color/color_primary"
|
||||||
|
app:rippleColor="@color/pressed_item_foreground"/>
|
||||||
|
|
||||||
|
</android.support.design.widget.CoordinatorLayout>
|
||||||
|
|
Loading…
Reference in New Issue