[android] Added divider to ugc review list

This commit is contained in:
Александр Зацепин 2017-09-20 15:03:46 +03:00 committed by Roman Kuznetsov
parent 378cb2bfb2
commit 71e72a9434
5 changed files with 16 additions and 5 deletions

View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<size android:width="1dp" android:height="1dp"/>
<solid android:color="@android:color/transparent"/>
</shape>

View file

@ -238,10 +238,6 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:listitem="@layout/item_ugc_comment"/>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="?dividerHorizontal"/>
<TextView
android:id="@+id/tv__pp_ugc_reviews_more"
style="@style/PlacePageMetadataText.Button"

View file

@ -107,6 +107,8 @@
<item name="viatorLogo">@drawable/ic_logo_viator_light</item>
<item name="ratingButtonBackground">@drawable/bg_rating_button</item>
<item name="android:listDivider">@drawable/list_divider</item>
</style>
<!-- Night theme -->

View file

@ -680,6 +680,8 @@ public class PlacePageView extends RelativeLayout
RecyclerView rvHotelReview = (RecyclerView) findViewById(R.id.rv__pp_ugc_reviews);
rvHotelReview.setLayoutManager(new LinearLayoutManager(getContext()));
rvHotelReview.getLayoutManager().setAutoMeasureEnabled(true);
rvHotelReview.addItemDecoration(ItemDecoratorFactory.createDefaultDecorator(getContext(),
LinearLayoutManager.VERTICAL));
rvHotelReview.setNestedScrollingEnabled(false);
rvHotelReview.setHasFixedSize(false);
rvHotelReview.setAdapter(mUGCReviewAdapter);
@ -694,7 +696,6 @@ public class PlacePageView extends RelativeLayout
rvRatingRecords.setAdapter(mUGCRatingRecordsAdapter);
}
private void initHotelRatingView()
{
mHotelReview = findViewById(R.id.ll__place_hotel_rating);

View file

@ -36,4 +36,11 @@ public class ItemDecoratorFactory
decoration.setDrawable(ContextCompat.getDrawable(context, R.drawable.divider_transparent_base));
return decoration;
}
@NonNull
public static RecyclerView.ItemDecoration createDefaultDecorator(@NonNull Context context,
int orientation)
{
return new DividerItemDecoration(context, orientation);
}
}