Revision control

Copy as Markdown

<?xml version="1.0" encoding="utf-8"?>
<data>
<variable
name="addon"
type="mozilla.components.feature.addons.Addon" />
</data>
<org.mozilla.vrbrowser.ui.views.ScrollBlockingLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<org.mozilla.vrbrowser.ui.views.CustomScrollView
android:id="@+id/scrollview"
style="@style/customScrollViewStyle"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintWidth_max="500dp"
android:paddingEnd="20dp"
android:layout_gravity="center_horizontal">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/addon_description"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="30dp"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginBottom="10dp">
<TextView
android:id="@+id/authors_title"
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/addons_authors_title"
android:textAlignment="textStart"/>
<TextView
android:id="@+id/authors_text"
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:text="Authors"
android:textAlignment="textEnd"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginBottom="10dp">
<TextView
android:id="@+id/version_title"
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/addons_version_title"
android:textAlignment="textStart"/>
<TextView
android:id="@+id/version_text"
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:text="Version"
android:textAlignment="textEnd"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginBottom="10dp">
<TextView
android:id="@+id/last_updated_title"
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/addons_last_updated_title"
android:textAlignment="textStart"/>
<TextView
android:id="@+id/last_updated_text"
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:text="Last Updated"
android:textAlignment="textEnd"/>
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginBottom="10dp">
<TextView
android:id="@+id/homepage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/addons_homepage_title"
android:textAlignment="textStart"
android:textColorHighlight="@android:color/transparent"
android:textColorLink="@color/azure"
android:textColor="@color/azure"
android:autoLink="all"
android:textStyle="bold"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginBottom="10dp">
<TextView
android:id="@+id/rating_title"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="@string/addons_rating_title"
android:textAlignment="textStart"/>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<RatingBar
android:id="@+id/rating"
style="@style/Widget.AppCompat.RatingBar.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:importantForAccessibility="no"
android:layout_gravity="center_vertical"
android:isIndicator="true"
android:numStars="5"
android:layout_marginEnd="5dp"/>
<TextView
android:id="@+id/rating_text"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:textAlignment="textStart"
tools:text="1,000"/>
</LinearLayout>
</LinearLayout>
</LinearLayout>
</org.mozilla.vrbrowser.ui.views.CustomScrollView>
</androidx.constraintlayout.widget.ConstraintLayout>
</org.mozilla.vrbrowser.ui.views.ScrollBlockingLayout>
</layout>