mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-22 22:57:29 +00:00
oops, better handling
This commit is contained in:
parent
bbe3d9c588
commit
d10e95c529
@ -115,7 +115,13 @@ public abstract class FeedItemViewHolder extends RecyclerView.ViewHolder {
|
|||||||
|
|
||||||
private void setupLocation(@NonNull final Media media) {
|
private void setupLocation(@NonNull final Media media) {
|
||||||
final Location location = media.getLocation();
|
final Location location = media.getLocation();
|
||||||
if (location != null) {
|
if (location == null) {
|
||||||
|
topBinding.location.setVisibility(View.GONE);
|
||||||
|
topBinding.title.setLayoutParams(new RelativeLayout.LayoutParams(
|
||||||
|
RelativeLayout.LayoutParams.MATCH_PARENT, RelativeLayout.LayoutParams.MATCH_PARENT
|
||||||
|
));
|
||||||
|
}
|
||||||
|
else {
|
||||||
final String locationName = location.getName();
|
final String locationName = location.getName();
|
||||||
if (TextUtils.isEmpty(locationName)) {
|
if (TextUtils.isEmpty(locationName)) {
|
||||||
topBinding.location.setVisibility(View.GONE);
|
topBinding.location.setVisibility(View.GONE);
|
||||||
|
Loading…
Reference in New Issue
Block a user