gpt4 book ai didi

android - 将 ProgressBar 水平对齐到顶部(消除间隙)

转载 作者:IT老高 更新时间:2023-10-28 22:02:47 25 4
gpt4 key购买 nike

我正在尝试在框架顶部放置一个水平进度条。但似乎有我根本无法删除的填充。有什么帮助吗?

enter image description here

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ProgressBar android:id="@+id/flv_progress_bar"
android:layout_width="fill_parent"
style="@android:style/Widget.Holo.ProgressBar.Horizontal"
android:indeterminateOnly="true"
android:layout_height="wrap_content"
android:layout_gravity="top"/>
</FrameLayout>

最佳答案

Pork'n'Bunny 的回答适用于 API 级别 16 及更高级别的设备。该解决方案适用于所有设备。只需在 XML 中向上推 6dp。

 <ProgressBar
android:id="@+id/progressbar_Horizontal"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="100"
android:layout_alignParentTop="true"
android:layout_marginTop="-6dp" />

关于android - 将 ProgressBar 水平对齐到顶部(消除间隙),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18526644/

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