fenix/app/src/main/res/layout/studies_section_item.xml

35 lines
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<View
android:id="@+id/divider"
android:layout_width="match_parent"
android:layout_height="1dp"
android:visibility="gone"
android:layout_marginTop="7dp"
android:background="?android:attr/listDivider" />
<TextView
android:layout_marginStart="@dimen/top_bar_alignment_margin_start"
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="@dimen/section_header_height"
android:gravity="start|center_vertical"
app:fontFamily="@font/metropolis_semibold"
android:textColor="?preferenceSectionHeader"
android:background="?android:attr/selectableItemBackground"
android:orientation="horizontal"
android:paddingVertical="16dp"
android:textStyle="bold"
tools:text="Active" />
</LinearLayout>