I have a custom view that extends ViewGroup
. It includes a ProgressBar
and a WebView
. I\'m displaying the ProgressBar
whi
Let's give it a try...
I have fix the size
of progressBar with add some padding
.
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ProgressBar
android:id="@+id/progressBar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="45dp"
/>
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/category_img"
android:scaleType="fitXY"
tools:ignore="ContentDescription" />
</RelativeLayout>
Now Looks like this: