activity_picture_preview.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:id="@+id/main"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="@color/black"
  8. android:orientation="vertical"
  9. tools:context=".ui.picture_preview.PicturePreviewActivity">
  10. <include
  11. layout="@layout/layout_title"
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content" />
  14. <androidx.appcompat.widget.AppCompatImageView
  15. android:id="@+id/image_view"
  16. android:layout_width="match_parent"
  17. android:layout_height="match_parent"
  18. android:scaleType="fitCenter"
  19. android:adjustViewBounds="true" />
  20. <!-- <TextView-->
  21. <!-- android:id="@+id/image_name"-->
  22. <!-- android:layout_width="match_parent"-->
  23. <!-- android:layout_height="wrap_content"-->
  24. <!-- android:layout_marginTop="@dimen/common_padding_huge"-->
  25. <!-- android:layout_marginBottom="@dimen/common_padding_huge"-->
  26. <!-- android:gravity="center"-->
  27. <!-- android:padding="@dimen/common_padding_large"-->
  28. <!-- android:textColor="@color/white"-->
  29. <!-- android:textSize="@dimen/text_size_large"-->
  30. <!-- android:textStyle="bold" />-->
  31. </LinearLayout>