我有相对布局,我想做以下事项:
我想以编程方式将X文本视图放在相对布局的右侧
X可以只是1或最多可以是4
我需要的是,我最终希望将文本视图发送到" cluster"朝向中心/垂直。
示例:
--------------------------- RelativeLayout Top
TextView
--------------------------- RelativeLayout Bottom
2:
--------------------------- RelativeLayout Top
TextView-1 (the center is between Text-1 and Text-2)
TextView-2
--------------------------- RelativeLayout Bottom
用3:
--------------------------- RelativeLayout Top
TextView-1
TextView-2
TextView-3
--------------------------- RelativeLayout Bottom
等。
我尝试的是创建一个垂直方向的线性布局,并将其添加到相对布局的左侧
然后我将文本视图添加为子项,如果适用于线性布局,但这不起作用:
1)线性布局总是换行而不是匹配父宽度
2)我似乎无法将每个孩子layout_gravity
设置为居中以测试会发生什么,因为如果我这样做:
((LinearLayout.LayoutParams)textView.getLayoutParams()).gravity = Gravity.CENTER;
这会影响文本而不是位置
任何人都可以帮忙吗?即使是一个简单的例子,有了解如何做到这一点的观点将是伟大的!
更新:这就是我现在所做的:
LinearLayout linearLayout = new LinearLayout(theContext); RelativeLayout.LayoutParams linearLayoutsParams = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT,RelativeLayout.LayoutParams.MATCH_PARENT); linearLayoutsParams.addRule(RelativeLayout.ALIGN_PARENT_LEFT); linearLayout.setOrientation(LinearLayout.VERTICAL); linearLayout.setLayoutParams(linearLayoutsParams);
答案 0 :(得分:1)
根据我的理解,你不需要为LinearLayout
孩子设定引力。只需设置
android:layout_centerVertical="true"
LinearLayout
本身上的(高度= wrap_content和垂直方向)。类似的东西:
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:gravity="center_vertical"
android:orientation="vertical">
以编程方式(虽然未经测试):
LinearLayout linearLayout = new LinearLayout(context);
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(WRAP_CONTENT, WRAP_CONTENT);
params.addRule(RelativeLayout.ALIGN_PARENT_LEFT);
params.addRule(RelativeLayout.CENTER_VERTICAL);
linearLayout.setOrientation(LinearLayout.VERTICAL);
linearLayout.setGravity(Gravity.CENTER_VERTICAL); //not sure it's needed
linearLayout.setLayoutParams(params);
线性布局规则不会传播到其子节点:LL将具有等间隔的子节点。但是我们将高度设置为wrap_content
,这样它就会很高,我们设置center_vertical
以便它保持居中。