我在Android layouts文件夹xml文件中静态实现了一个布局,如下所示
<TableRow
android:layout_height="wrap_content"
android:layout_width="match_parent"
>
<LinearLayout
android:weightSum="1.0"
android:layout_weight=".75"
android:layout_height="match_parent"
android:layout_width="0dip"
android:background="#ffef1128"
>
<Button
android:id="@+id/textbox12"
android:layout_height="wrap_content"
android:layout_weight="0.2"
android:layout_width="0dip"
android:textSize="14sp"
android:text="20%"
android:background="@color/fund_background_blue"
android:textColor="@color/gen_text_color"
/>
</LinearLayout>
<LinearLayout
android:layout_weight=".25"
android:layout_height="match_parent"
android:layout_width="0dip"
>
<TextView
android:id="@+id/TextView22"
android:text="12.4"
android:layout_weight=".15"
android:layout_height="wrap_content"
android:layout_width="0dip"
android:textColor="#000000"
android:gravity="right"
android:layout_gravity="center_vertical" />
<ImageView
android:src="@drawable/ic_up"
android:layout_height="15dp"
android:layout_width="0dip"
android:layout_weight=".05"
android:layout_gravity="center_vertical" />
</LinearLayout>
</TableRow>
如何在Activity中添加这些以编程方式而不是xml Layout.as它涉及布局权重和权重总和。
样本输出供参考
答案 0 :(得分:0)
您可以从所有窗口小部件获取实例,并以编程方式设置布局
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.FILL_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT);
layoutParams.weight=1;
your_widget.setLayoutParams(layoutParams);