Commit 05fa6282 authored by Varun Patil's avatar Varun Patil

fix(venter): Set nestedScrollingEnabled to false in details

parent 28213b52
...@@ -181,7 +181,6 @@ public class ComplaintDetailsFragment extends Fragment { ...@@ -181,7 +181,6 @@ public class ComplaintDetailsFragment extends Fragment {
textViewVoteUpLabel = view.findViewById(R.id.up_vote_label); textViewVoteUpLabel = view.findViewById(R.id.up_vote_label);
tagsLayout = view.findViewById(R.id.tags_layout); tagsLayout = view.findViewById(R.id.tags_layout);
linearLayoutTags = view.findViewById(R.id.linearLayoutTags); linearLayoutTags = view.findViewById(R.id.linearLayoutTags);
layoutUpVotes = view.findViewById(R.id.layoutUpVotes);
recyclerViewComments = view.findViewById(R.id.recyclerViewComments); recyclerViewComments = view.findViewById(R.id.recyclerViewComments);
recyclerViewUpVotes = view.findViewById(R.id.recyclerViewUpVotes); recyclerViewUpVotes = view.findViewById(R.id.recyclerViewUpVotes);
editTextComment = view.findViewById(R.id.edit_comment); editTextComment = view.findViewById(R.id.edit_comment);
......
...@@ -298,8 +298,7 @@ ...@@ -298,8 +298,7 @@
</LinearLayout> </LinearLayout>
<android.support.design.widget.CoordinatorLayout <LinearLayout
android:id="@+id/layoutComments"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="vertical" android:orientation="vertical"
...@@ -308,9 +307,9 @@ ...@@ -308,9 +307,9 @@
<android.support.v7.widget.RecyclerView <android.support.v7.widget.RecyclerView
android:id="@+id/recyclerViewComments" android:id="@+id/recyclerViewComments"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" /> android:layout_height="wrap_content"
android:nestedScrollingEnabled="false" />
</android.support.design.widget.CoordinatorLayout> </LinearLayout>
<LinearLayout <LinearLayout
android:layout_width="match_parent" android:layout_width="match_parent"
...@@ -377,14 +376,7 @@ ...@@ -377,14 +376,7 @@
</LinearLayout> </LinearLayout>
<ScrollView <LinearLayout
android:id="@+id/layoutUpVotes"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="6dp"
android:background="@android:color/white">
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="vertical" android:orientation="vertical"
...@@ -393,11 +385,10 @@ ...@@ -393,11 +385,10 @@
<android.support.v7.widget.RecyclerView <android.support.v7.widget.RecyclerView
android:id="@+id/recyclerViewUpVotes" android:id="@+id/recyclerViewUpVotes"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" /> android:layout_height="wrap_content"
android:nestedScrollingEnabled="false" />
</android.support.design.widget.CoordinatorLayout>
</ScrollView> </LinearLayout>
</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