我想用xml为spinner(combobox)制作复杂的背景。例如 左边一个矩形,另一半分为三个部分,中间一个将有一个三角形。由于我的旋转器宽度和高度是完全动态的,我如何根据宽度和高度的百分比来定位这些形状 感谢
答案 0 :(得分:0)
尝试给予权重,就像百分比一样
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:text="test"
android:id="@+id/test"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
weight="1" />
<Button
android:text="testing"
android:id="@+id/testing"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
weight="1" />
</LinearLayout>