我有一个带有ImageView的工具栏,工具栏允许滚动和滑动。
我正在寻找一种方法来创建类似whatsapp的个人资料的界面。
我需要有可能点击工具栏内的ImageView,然后弹出另一个允许保存或缩放图像的界面(或活动)(如whatsapp的个人资料图片)。
谷歌提供ZoomView但还不够,我不需要只放大图像,也许我需要创建另一个活动,我不知道从哪里开始
单击图像后得到的示例:
答案 0 :(得分:3)
您需要将Android Studio与Google Design库配合使用, 支持 - CoordinatorLayout,具有折叠工具栏布局 如下,
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="312dp"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<ImageView
android:id="@+id/imgDetailView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:scaleType="fitCenter"
android:layout_margin="@dimen/card_margin"
android:src="@mipmap/ic_launcher"
app:layout_collapseMode="parallax" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolBar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:title="Outlet Details"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:title="Outlet Details" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
使用onCreatOptionsMenu方法中的菜单项设置工具栏。
检查imageview的点击事件以及点击图片视图 使用与上面相同的其他片段更改内容。
答案 1 :(得分:1)
我认为你正在寻找这个: https://github.com/ksoichiro/Android-ObservableScrollView
并且: https://github.com/lgvalle/Material-Animations
我希望它有所帮助