gpt4 book ai didi

android - 如何制作这种布局。请查看详情

转载 作者:行者123 更新时间:2023-11-30 01:25:00 25 4
gpt4 key购买 nike

这是一张图片:

enter image description here

我想知道的是,如何进行这种布局?

特别是:

1- 隐形状态栏。

2- 不可见的工具栏。

3- 图像上方的 float 操作按钮及其下方的 View 。

请告诉我。

很抱歉问题的格式不正确。我在这里还是个初学者。

最佳答案

图中所示的Activity为ScrollingActivity。在您的依赖项中添加设计库。并创建如下所示的 Activity 。并添加一些额外的东西,如图所示。通过 getSupportActionBar().setDisplayHomeAsUpEnabled(true); 启用后退按钮。在 CollapsingToolbarLayout 上设置背景图片

滚动 Activity .java

public class ScrollingActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_scrolling2);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);

FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
.setAction("Action", null).show();
}
});
}
}

activity_scroll.xml

<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="@dimen/app_bar_height"
android:fitsSystemWindows="true"
android:theme="@style/AppTheme.AppBarOverlay">

<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/toolbar_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:background="@drawable/image" <!-- Background Image -->
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|exitUntilCollapsed">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/AppTheme.PopupOverlay" />

</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>

<include layout="@layout/content_scrolling2" />

<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/ic_dialog_email"
app:layout_anchor="@id/app_bar"
app:layout_anchorGravity="bottom|end" />

content_scroll.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView 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"
app:layout_behavior="@string/appbar_scrolling_view_behavior"

tools:showIn="@layout/activity_scrolling2">

<!-- Add your Views -->


</android.support.v4.widget.NestedScrollView>

关于android - 如何制作这种布局。请查看详情,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36526784/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com