gpt4 book ai didi

Android:静态水平进度条可以嵌入到Textview中吗?

转载 作者:行者123 更新时间:2023-11-29 00:46:25 26 4
gpt4 key购买 nike

我不认为这是可能的,但是可以在 Textview 中嵌入静态(确定的)水平进度条吗?

更新 1:我正在尝试创建一个类似于 iPhone 的进度条,但我还需要在其上方添加文字。这是一张照片:http://i.stack.imgur.com/aDFU9.png

更新2:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<ProgressBar
style="@android:style/Widget.ProgressBar.Horizontal"
android:id="@+id/pbar1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:max="100"
android:progress="45"
android:maxHeight="5sp"
android:layout_marginRight="5dp" />
</LinearLayout>

这是图片:http://i.stack.imgur.com/ypimG.png

现在我的目标是让它看起来像上一张图​​片。

最佳答案

作为TextView不能包含另一个 View (没有 addChild() 方法)答案是否定的。

更新:看过图片后,您应该使用包含 TextView 和 ProgressBar 的 LinearLayout。

关于Android:静态水平进度条可以嵌入到Textview中吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6117703/

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