如何设置LinearLayout LayoutParams以显示所有高度

时间:2017-01-28 12:18:33

标签: android android-layout layout layoutparams

基于这个问题How to set RelativeLayout layout params in code not in xml我已经制作了这段代码:

    LinearLayout oLl = new LinearLayout(getContext());

    TextView oNum = new TextView(getContext());
    oNum.setText(String.valueOf(nPos + 1) + ". ");
    oNum.setTypeface(null, Typeface.BOLD);
    oNum.setTextColor(Color.RED);
    oNum.setTextSize(18);
    oNum.setPadding(Dp_to_Px(10),Dp_to_Px(15),0,0);

    TextView oText = new TextView(getContext());
    oText.setText(oPreg.getcPregunta());
    oText.setTypeface(null, Typeface.BOLD);
    oText.setTextColor(Color.BLACK);
    oText.setTextSize(18);

    LinearLayout.LayoutParams oLp = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT,LinearLayout.LayoutParams.WRAP_CONTENT);

    oLl.addView(oNum);
    oLl.addView(oText,oLp);

    oContainer.addView(oLl,oLp);

但它削减了最后一行。

enter image description here

编辑:

Radio Buttons的代码:

 RadioGroup oRg = new RadioGroup(getContext());
    oRg.setOrientation(RadioGroup.HORIZONTAL);
    oRg.setPadding(Dp_to_Px(10),Dp_to_Px(6),0,0);

    RadioButton oRbSi = new RadioButton(getContext());
    oRbSi.setText(getContext().getString(R.string.Si));
    oRbSi.setPadding(0,0,Dp_to_Px(25),Dp_to_Px(5));

    RadioButton oRbNo = new RadioButton(getContext());
    oRbNo.setText(getContext().getString(R.string.No));

    oRg.addView(oRbSi);
    oRg.addView(oRbNo);

    oContainer.addView(oRg);

oContainer定义:

<LinearLayout
    android:id="@+id/encuesta_frg_contaier"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

</LinearLayout>

1 个答案:

答案 0 :(得分:1)

正因为如此:oNum.setPadding(Dp_to_Px(10),Dp_to_Px(15),0,0);

oNum TextView顶部有填充,它将oText TextView推送到oRg RadioGroup下方。请尝试在oLl上设置填充,然后解决您的问题。