在Androidx中获取AppBar可以通过以下步骤实现:
implementation 'androidx.appcompat:appcompat:1.3.1'
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:title="My App" />
</com.google.android.material.appbar.AppBarLayout>
AppBarLayout appBarLayout = findViewById(R.id.appBarLayout);
Toolbar toolbar = findViewById(R.id.toolbar);
toolbar.setTitle("My App");
setSupportActionBar(toolbar);
通过以上步骤,你就可以在Androidx中成功获取AppBar,并对其进行进一步的设置和使用。
领取专属 10元无门槛券
手把手带您无忧上云