我不知道是什么问题。我试图在所有屏幕尺寸上都做到这一点,但我被困在这里。
这是问题所在
布局足够大,但是进度却被削减
下面是代码。 我该如何解决?
...
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<CustomProgressBar
android:id="@+id/progressBarBPM"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"/>
<CustomProgressBar
android:id="@+id/progressBarBPM2"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"/>
</LinearLayout>
...
在两部不同的手机中使用相同的代码:
答案 0 :(得分:1)
我解决了这个问题。我是自定义进度栏中的问题。