summaryrefslogtreecommitdiffstats
path: root/mobile/android/base/resources/layout/activity_stream_main_toppanel.xml
blob: 60c420063c49ebfade86745de7333feb0c2876d9 (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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <android.support.v4.view.ViewPager
        android:layout_marginTop="10dp"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/topsites_pager"
        android:contentDescription="@string/activity_stream_topsites" />

    <org.mozilla.gecko.home.activitystream.topsites.CirclePageIndicator
        android:id="@+id/topsites_indicator"
        android:padding="10dip"
        app:fillColor="#ff9d9d9d"
        app:pageColor="#FFFFFF"
        app:strokeWidth="1dp"
        app:radius="2dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

</LinearLayout>