Commit 815f32e5 authored by Yash Khemchandani's avatar Yash Khemchandani

Updated Profile Fragment Layout

parent e2bad655
...@@ -2,49 +2,78 @@ ...@@ -2,49 +2,78 @@
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:orientation="horizontal" android:orientation="vertical"
tools:context="in.ac.iitb.gymkhana.iitbapp.fragment.ProfileFragment"> tools:context="in.ac.iitb.gymkhana.iitbapp.fragment.ProfileFragment">
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/user_profile_picture_profile"
android:layout_width="160dp"
android:layout_height="160dp"
android:layout_margin="32dp" />
<LinearLayout <LinearLayout
android:layout_width="wrap_content" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="32dp" android:orientation="horizontal">
android:orientation="vertical">
<TextView <de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/user_name_profile" android:id="@+id/user_profile_picture_profile"
android:layout_width="match_parent" android:layout_width="135dp"
android:layout_height="wrap_content" android:layout_height="99dp"
android:layout_marginBottom="2dp" android:layout_margin="32dp" />
android:textSize="20sp"
android:textStyle="bold" />
<TextView <LinearLayout
android:id="@+id/user_rollno_profile" android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginBottom="2dp" android:layout_marginTop="32dp"
android:textSize="16sp" /> android:orientation="vertical">
<TextView
android:id="@+id/user_name_profile"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="2dp"
android:textSize="20sp"
android:textStyle="bold" />
<TextView
android:id="@+id/user_rollno_profile"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="2dp"
android:textSize="16sp" />
<TextView
android:id="@+id/user_email_profile"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="2dp"
android:textSize="16sp" />
<TextView
android:id="@+id/user_contact_no_profile"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="2dp"
android:textSize="16sp" />
</LinearLayout>
<TextView </LinearLayout>
android:id="@+id/user_email_profile"
android:layout_width="match_parent" <android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<android.support.design.widget.TabLayout
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="@color/colorPrimaryDark">
<android.support.design.widget.TabItem
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginBottom="2dp" android:text="Following" />
android:textSize="16sp" />
<TextView <android.support.design.widget.TabItem
android:id="@+id/user_contact_no_profile" android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginBottom="2dp" android:text="Events" />
android:textSize="16sp" />
</LinearLayout> </android.support.design.widget.TabLayout>
</LinearLayout> </LinearLayout>
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