当我向上滚动图像并显示标题时,我使用协调器布局。
但问题在于它在底部显示的某些移动设备。
这是我的.........................................的XML代码.................................................. ............
imageToSet.sd_setImage(with: URL(string: imageUrl),
placeholderImage: "Profile-Placeholder")
答案 0 :(得分:1)
你可以试试这个
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar_top"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
app:layout_collapseMode="parallax"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:id="@+id/toolbar_title" />
</android.support.v7.widget.Toolbar>
现在设置工具栏的标题
Toolbar toolbarTop = (Toolbar) findViewById(R.id.toolbar_top);
TextView mTitle = (TextView) toolbarTop.findViewById(R.id.toolbar_title);
mTitle.setText("title");
答案 1 :(得分:0)
您可能需要使用可用于CollapsingToolbarLayout的expandedTitleGravity标志将标题重力设置为中心水平