summaryrefslogtreecommitdiffstats
path: root/mobile/android/base/resources/layout/activity_stream_main_highlightstitle.xml
blob: 7338c859688368937e8ced07a3ec9cfe91a988d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="match_parent"
              android:layout_height="wrap_content">
    <View
        android:id="@+id/divider"
        android:layout_width="match_parent"
        android:layout_height="0.5dp"
        android:padding="4dp"
        android:background="#ffe0e0e0" />

    <TextView
        android:id="@+id/title_highlights"
        android:layout_marginLeft="@dimen/activity_stream_base_margin"
        android:layout_marginStart="@dimen/activity_stream_base_margin"
        android:layout_marginTop="@dimen/activity_stream_base_margin"
        android:layout_marginBottom="@dimen/activity_stream_base_margin"
        android:layout_marginRight="@dimen/activity_stream_base_margin"
        android:layout_marginEnd="@dimen/activity_stream_base_margin"
        android:text="@string/activity_stream_highlights"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textStyle="bold"
        android:textSize="16sp"
        android:textColor="#FF858585" />

</LinearLayout>