我即将开发Android应用程序。在我的应用程序中,我需要在屏幕底部放置操作栏。我以前从未这样做过。我害怕开始引用我发现的链接,因为大多数链接建议使用自定义布局,如RelativeLayout和LinearLayout,因为Action栏不能放在底部。
但问题是我会使用Recycler View放置无限列表。我担心的是,如果我使用RelativeLayout或LinearLayout,如果列表太长,操作栏可能不会固定在屏幕的底部。所以我尝试使用自定义零食吧。
但我觉得这不是个好主意,因为小吃店不是这样使用的。但现在大多数应用程序都在底部使用操作栏。我想知道的是在我的案例底部使用操作栏的最佳方法是什么。我从来没有把动作栏放在底部。你会建议什么?
答案 0 :(得分:5)
问题太老了,我想为需要添加bottomAppBar的人添加最新答案。
这是添加BottomAppBar的XML代码
<android.support.design.widget.CoordinatorLayout
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">
<!-- Other components and views -->
<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
app:navigationIcon="@drawable/ic_menu_24"/>
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_anchor="@id/bar"/>
</android.support.design.widget.CoordinatorLayout>
如何使用课程文件
BottomAppBar bar = (BottomAppBar) findViewById(R.id.bar);
bar.setOnMenuItemClickListener(new OnMenuItemClickListener() {
@Override
public boolean onMenuItemClick(MenuItem item) {
// Handle actions based on the menu item
return true;
}
});
示例图片
答案 1 :(得分:4)
使用Support ToolBar。在布局中的xml中手动添加ToolBar 将布局设置在底部。
<android.support.v7.widget.Toolbar
android:id="@+id/my_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
在风格
中使用NoActionBar主题 <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
然后在此活动中设置支持工具栏
// Find the toolbar view inside the activity layout
Toolbar toolbar = (Toolbar) findViewById(R.id.my_toolbar);
// Sets the Toolbar to act as the ActionBar for this Activity window.
// Make sure the toolbar exists in the activity and is not null
setSupportActionBar(toolbar);
并覆盖活动
中的OnCreateOptionsMenu(Menu menu)
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_home, menu);
return true;
}
答案 2 :(得分:0)
在xml文件中创建自定义布局和android:layout_alignParentBottom="true"
。然后在列表集android:layout_marginBottom="50dp"
中考虑自定义布局的高度为50dp