mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-19 19:03:07 +09:00
26 lines
952 B
XML
26 lines
952 B
XML
<?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>
|