我被困在某个地方......我正在编写一个用于记录放牧奶牛行为观察的应用程序。我的想法是,在屏幕的底部,我有一些字段可以识别各个动物。要注册观察,该字段将被拖动到顶部的一个字段,即将240拖到Grazing以显示现在是#240牧场放牧。
使用多种线性布局构建屏幕布局。基本上布局是
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="250dp"
android:orientation="vertical">
<LinearLayout
android:layout_width="100dp"
android:layout_height="150dp"
android:background="@drawable/shape">
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:text="Grazing" />
</LinearLayout>
然后,linearlayout / textview模式在顶部重复三次,底部使用类似的模式(xml的显示部分被编辑)
目前我遇到了三个不同的问题:
1)如何在四个拖曳区域和下降区域之间平均分割顶部和底部的屏幕空间?我试图使用重量而不是宽度的固定值,但如果我尝试,应用程序崩溃。 - 顺便说一下,区域的数量可能略有不同。
2)如何让文本在区域中居中。当我搜索时,我被告知我必须使用layout_gravity =“center”,但这不起作用 - 据我理解布局,将textview放在线性布局的中心 - 我如何确保文本位于textview的中间?
3)为什么底部区域部分“掉下屏幕”?它们等于上部区域,表示它们被包裹在layout_gravity =“bottom”的线性布局中 - 我认为这会导致它们在屏幕底部有底部..
(如果重要的话,我正在手机上使用Aide进行开发)
答案 0 :(得分:5)
以这种方式划分高度。在这里,我将屏幕的高度划分为3个linearlayouts
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="horizontal" >
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="horizontal" >
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="horizontal" >
</LinearLayout>
</LinearLayout>
答案 1 :(得分:1)
对于第一个和第三个问题,您可以使用Fahim的答案,使用layout_weight
是解决方案。
如果您想要layout_wight
用于水平Linearlayouts
android:layout_width
必须为"0dp"
,对于垂直布局,您需要设置android:layout_height="0dp"
如果您想在TextView
的中间设置文字,则应设置android:gravity="center"
。 android:layout_gravity="center"
会将TextView
设置在其父级的中心,与文本无关。