Fix issue #601 - Put images in full width when there is only one

This commit is contained in:
stom79 2018-12-17 19:22:57 +01:00
parent d18e50747f
commit 955c0ca77e
4 changed files with 7 additions and 1 deletions

View File

@ -327,7 +327,7 @@ public class StatusListAdapter extends RecyclerView.Adapter implements OnPostAct
LinearLayout left_buttons;
Button status_show_more_content;
SparkButton spark_button_fav, spark_button_reblog;
RelativeLayout horizontal_second_image;
public View getView(){
return itemView;
}
@ -410,6 +410,7 @@ public class StatusListAdapter extends RecyclerView.Adapter implements OnPostAct
status_show_more_content = itemView.findViewById(R.id.status_show_more_content);
spark_button_fav = itemView.findViewById(R.id.spark_button_fav);
spark_button_reblog = itemView.findViewById(R.id.spark_button_reblog);
horizontal_second_image = itemView.findViewById(R.id.horizontal_second_image);
}
}
@ -2161,6 +2162,7 @@ public class StatusListAdapter extends RecyclerView.Adapter implements OnPostAct
if( attachments != null && attachments.size() > 0){
int i = 0;
holder.horizontal_second_image.setVisibility(View.VISIBLE);
if(fullAttachement)
holder.status_horizontal_document_container.setVisibility(View.VISIBLE);
else
@ -2173,6 +2175,7 @@ public class StatusListAdapter extends RecyclerView.Adapter implements OnPostAct
holder.status_prev2_h.setVisibility(View.GONE);
holder.status_prev3_h.setVisibility(View.GONE);
holder.status_prev4_h.setVisibility(View.GONE);
holder.horizontal_second_image.setVisibility(View.GONE);
}
if( attachments.get(0).getUrl().trim().contains("missing.png"))
if(fullAttachement)

View File

@ -445,6 +445,7 @@
android:contentDescription="@string/play_video" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/horizontal_second_image"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"

View File

@ -421,6 +421,7 @@
android:contentDescription="@string/play_video" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/horizontal_second_image"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"

View File

@ -349,6 +349,7 @@
android:contentDescription="@string/play_video" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/horizontal_second_image"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"