Commit 1ba0042e authored by RAHUL SHARMA's avatar RAHUL SHARMA

Added BroadActivity and SubActivity model

parent e8adc070
package app.insti.adapter;
public class ActivitiesAdapter {
}
package app.insti.api.model;
public class BroadActivity {
}
package app.insti.api.model;
public class SubActivity {
}
<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:elevation="6dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">
<ImageView
android:layout_width="match_parent"
android:layout_height="180dp"
android:adjustViewBounds="true"
android:scaleType="centerCrop"
android:id="@+id/imgViewActivity">
</ImageView>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/txtViewActivity"
style="@style/TextAppearance.AppCompat.Title"
android:layout_marginTop="10dp">
</TextView>
</LinearLayout>
</androidx.cardview.widget.CardView>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment