我有一个包含textview和复选框的线性布局。
<LinearLayout style="@style/linearLayoutStyleNoBgColor" >
<TextView
android:id="@+id/useFollowupDate"
style="@style/textFieldStyleType1WithCheckbox" />
<CheckBox
android:id="@+id/checkFollowDate"
style="@style/checkboxStyleType1"/>
</LinearLayout>
风格是:
<style name="linearLayoutStyleNoBgColor">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">fill_parent</item>
<item name="android:layout_margin">5dp</item>
<item name="android:weightSum">1.0</item>
</style>
<style name="textFieldStyleType1WithCheckbox" parent="@style/textFieldStyleType1">
<item name="android:layout_height">match_parent</item>
<item name="android:layout_weight">0.30</item>
<item name="android:gravity">center_vertical</item>
</style>
<style name="checkboxStyleType1">
<item name="android:layout_width">0dp</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_weight">0.70</item>
<item name="android:gravity">right|end</item>
</style>
我想要实现的是
TextView | checkbox
(30%percent screen) | (to the right)
但我现在正在接受
TextView | checkbox
(30%percent screen) | (left aligned)
我哪里出错了?
答案 0 :(得分:0)
如果你想恰当地对齐它们,那么你可以使用相对布局。在文本视图右侧显示复选框
<CheckBox
android:id="@+id/checkFollowDate"
style="@style/checkboxStyleType1"
android:layout_toRightOf="@id/useFollowupDate"
/>
答案 1 :(得分:0)
我认为您应该将android:gravity
更改为android:layout_gravity
checkboxStyleType1
答案 2 :(得分:0)
在适当的位置使用gravity
和layout_gravity
属性;
这可能很有用: http://thinkandroid.wordpress.com/2010/01/14/how-to-position-views-properly-in-layouts/
答案 3 :(得分:0)
Styles.xml
<style name="linearLayoutStyleNoBgColor">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">fill_parent</item>
<item name="android:layout_margin">5dp</item>
<item name="android:weightSum">1.0</item>
</style>
<style name="textFieldStyleType1WithCheckbox">
<item name="android:layout_width">0dip</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_weight">1</item>
<item name="android:gravity">center_vertical</item>
</style>
<style name="checkboxStyleType1">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:gravity">right|end</item>
</style>
activity_main.xml中
<LinearLayout
style="@style/linearLayoutStyleNoBgColor"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/useFollowupDate"
style="@style/textFieldStyleType1WithCheckbox"
android:text="test"
android:layout_width="wrap_content" />
<CheckBox
android:id="@+id/checkFollowDate"
style="@style/checkboxStyleType1"
android:gravity="center_vertical"
android:text="checkbox" />
</LinearLayout>