我目前正在一个摄影画廊工作,我想创建一个描述布局,将通过滚动显示每一张照片,就像在截图我已经采取。我该怎么做?
以下是我的布局:
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000"
tools:context=".DetailActivity"
android:clipToPadding="false">
<androidx.viewpager.widget.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000"
android:elevation="0dp"
android:translationZ="0dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/app_bar_detail"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="#50000000"
app:elevation="0dp"
app:layout_constraintTop_toTopOf="parent"
android:clipToPadding="false"
android:fitsSystemWindows="true">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar_detail"
style="@style/Theme.MaterialComponents.Light"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="#00000000"
app:title="@string/app_name"
app:titleTextColor="#FFFFFF">
</androidx.appcompat.widget.Toolbar>
</com.google.android.material.appbar.AppBarLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
谢谢!照片1
照片2
暂无答案!
目前还没有任何答案,快来回答吧!