在Android中,AppBarLayout是一個用于處理滾動事件的布局組件
dependencies {
implementation 'com.google.android.material:material:1.4.0'
}
<androidx.core.widget.NestedScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<!-- 在這里添加您的布局內容 -->
</LinearLayout>
</androidx.core.widget.NestedScrollView>
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/app_bar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!-- 在這里添加您的AppBarLayout內容,如Toolbar、TabLayout等 -->
</com.google.android.material.appbar.AppBarLayout>
import androidx.core.view.ViewCompat;
import androidx.appcompat.app.AppCompatActivity;
import androidx.recyclerview.widget.RecyclerView;
public class MainActivity extends AppCompatActivity {
private AppBarLayout appBarLayout;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
appBarLayout = findViewById(R.id.app_bar_layout);
appBarLayout.addOnScrollListener(new AppBarLayout.OnScrollListener() {
@Override
public void onScrolled(@NonNull View view, int dx, int dy) {
super.onScrolled(view, dx, dy);
if (ViewCompat.canScrollVertically(view, 1)) {
// 當滾動向上時,隱藏AppBarLayout內容
appBarLayout.setExpanded(false, true);
} else {
// 當滾動向下時,顯示AppBarLayout內容
appBarLayout.setExpanded(true, true);
}
}
@Override
public void onScrollStateChanged(@NonNull View view, int scrollState) {
// 您還可以在這里處理滾動狀態變化
}
});
}
}
這樣,當用戶滾動頁面時,AppBarLayout會根據滾動方向展開或收起。您可以根據需要自定義這種行為。