studies_section_item.xml (1345B)
1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public 3 - License, v. 2.0. If a copy of the MPL was not distributed with this 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 5 6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 7 xmlns:tools="http://schemas.android.com/tools" 8 android:layout_width="match_parent" 9 android:layout_height="wrap_content" 10 android:orientation="vertical"> 11 12 <View 13 android:id="@+id/divider" 14 android:layout_width="match_parent" 15 android:layout_height="1dp" 16 android:visibility="gone" 17 android:layout_marginTop="7dp" 18 android:background="?android:attr/listDivider" /> 19 20 <TextView 21 android:layout_marginStart="@dimen/top_bar_alignment_margin_start" 22 android:id="@+id/title" 23 android:layout_width="match_parent" 24 android:layout_height="wrap_content" 25 android:gravity="start|center_vertical" 26 android:textColor="?colorOnSurfaceVariant" 27 android:background="?android:attr/selectableItemBackground" 28 android:orientation="horizontal" 29 android:layout_marginTop="8dp" 30 android:layout_marginBottom="14dp" 31 style="@style/StudiesItemTitleTextStyle" 32 tools:text="Active"/> 33 </LinearLayout>