make release checkboxes unchecked admin users layout update update commits and releases layout profile fragments layout updates improve labels Merge branch 'master' into improve-layouts branches and milestones layout update. Fix milestone infinite pagination loop for lower versions layout updates for issues, pr. Fix pr nullable objects for lower versions improve files layout improve org info and list orgs improve teams list layout by org Fix repo layouts Reviewed-on: https://gitea.com/gitnex/GitNex/pulls/524 Reviewed-by: opyale <opyale@noreply.gitea.io>
44 lines
1.5 KiB
XML
44 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
tools:context=".activities.RepoDetailActivity">
|
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
|
android:id="@+id/pullToRefresh"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/recyclerView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="?attr/primaryBackgroundColor"
|
|
android:scrollbars="vertical" />
|
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/noData"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_margin="15dp"
|
|
android:gravity="center"
|
|
android:text="@string/noDataLabelsTab"
|
|
android:textColor="?attr/primaryTextColor"
|
|
android:textSize="20sp"
|
|
android:visibility="gone" />
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progress_bar"
|
|
style="@style/Base.Widget.AppCompat.ProgressBar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:indeterminate="true"
|
|
android:visibility="visible" />
|
|
|
|
</RelativeLayout>
|