2019-06-03 23:25:05 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<TextView
|
2020-04-04 21:20:25 +02:00
|
|
|
android:id="@+id/counterBadgePullText"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:textSize="16sp"
|
|
|
|
app:textAllCaps="true"
|
2020-04-04 21:20:25 +02:00
|
|
|
android:text="@string/tabPullRequests"
|
2019-09-19 08:21:15 +02:00
|
|
|
android:textColor="@color/lightGray" />
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
<TextView
|
2020-04-04 21:20:25 +02:00
|
|
|
android:id="@+id/counterBadgePull"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="8dp"
|
2020-04-04 21:20:25 +02:00
|
|
|
android:layout_marginTop="1dp"
|
|
|
|
android:layout_toEndOf="@id/counterBadgePullText"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:background="@drawable/badge_background"
|
2020-04-04 21:20:25 +02:00
|
|
|
android:gravity="center"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:text="@string/infoTabRepoZero"
|
2020-04-04 21:20:25 +02:00
|
|
|
android:textColor="@color/white"
|
|
|
|
android:textSize="12sp" />
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
</RelativeLayout>
|