java安卓xml_android – 将xml布局更改为java代码

你好

任何人都可以告诉我们如何将xml布局更改为java代码.

我需要在选项卡视图中显示网格视图.为此我需要在Java代码而不是xml中实现这些属性.请回复

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:numColumns="auto_fit"

android:verticalSpacing="10dp"

android:horizontalSpacing="10dp"

android:columnWidth="90dp"

android:stretchMode="columnWidth"

android:gravity="center"

解决方法:

假设您已访问网格视图:

final GridView gw = [...];

要设置上面的所有属性,您应该写:

// This line applies to a GridView that you've just created

gv.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));

// The next two lines are for a GridView that you already have displayed

gv.getLayoutParams().width = LayoutParams.FILL_PARENT;

gv.getLayoutParams().height = LayoutParams.FILL_PARENT;

gv.setNumColumns(GridView.AUTO_FIT);

gv.setVerticalSpacing(convertFromDp(10));

gv.setHorizontalSpacing(convertFromDp(10));

gv.setColumnWidth(convertFromDp(90));

gv.setStretchMode(GridView.STRETCH_COLUMN_WIDTH);

gv.setGravity(Gravity.CENTER);

要设置LayoutParams,您必须在上述两种情况之间进行选择.

标签:android

来源: https://codeday.me/bug/20190614/1237423.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值