我需要有7个切换按钮来表示一周中的日期,就像您在默认的Android闹钟应用上看到的那样。
有没有办法排列7个按钮,以便它们调整大小并水平放在一条线上?
抓住我的头。
由于
答案 0 :(得分:0)
您可以创建一个directionLayout,其orientation = horizontal,并将ToggleButtons设置为width = 0dp且weight = 1
<ToggleButton
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"/>