Hi im trying to create a custom layout but i\'m struggling to get it to work properly i\'m getting an error \"circluar dependencies cannot exist in Relative layout\"
Remove android:layout_below="@+id/HomeScore" from first TextView in your layout it creates circular dependencies.
Why ?
Because you set android:layout_alignBottom="@+id/TextView04" in Textview whose id is
android:id="@+id/HomeScore".and first Textview(TextView04) have also android:layout_below="@+id/HomeScore".