动作条
以前,当使用动作条时,在动作条的顶部有水平进度条是非常简单的。通过编码
@Override
public void onCreate(Bundle savedInstanceState) {
requestWindowFeature(Window.FEATURE_PROGRESS);
我们可以
工具栏
现在,我希望通过使用appcompat
Toolbar
实现相同的外观。如果不添加水平进度条,我的工具栏看起来是这样的通过以下布局添加水平进度条之后。
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" >
<!-- android:elevation="4dp" is used due to http://www.google.com/design/spec/what-is-material/elevation-shadows.html#elevation-shadows-elevation-android- -->
<ProgressBar
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="2dp"
android:id="@+id/progress"
android:layout_gravity="top"
android:gravity="top"
android:max="100" android:progress="45"/>
</android.support.v7.widget.Toolbar>
然而,这就是我得到的
水平进度条不在工具栏顶部,尽管我在
top
到layout_gravity
和gravity
之间做了特定的操作。工具栏标题文本已消失。
我在想,我错过了什么吗?
最佳答案
改用垂直线性布局作为根:
<LinearLayout
android:orientation="vertical"
android:background="?attr/colorPrimary">
<ProgressBar />
<android.support.v7.widget.Toolbar />
</LinearLayout>
或者正如@cheokyancheng在评论中所说,您可以使用
FrameLayout
来避免推送效应。<FrameLayout
android:gravity="top"
android:background="?attr/colorPrimary">
<android.support.v7.widget.Toolbar />
<ProgressBar />
</FrameLayout>