gpt4 book ai didi

android - 以编程方式 LinearLayout 权重

转载 作者:行者123 更新时间:2023-11-30 02:55:56 28 4
gpt4 key购买 nike

我正在尝试开发类似于网格但使用 LinearLayout。我想在单行中有 3 张图像和图像后的确切底部文本。

enter image description here

我尝试过的:

LinearLayout layout = new LinearLayout(context);
layout.setOrientation(LinearLayout.VERTICAL);

ImageView icon = new ImageView(context);
Item item = getItem(page, index);
Log.e("tag", item.getDrawable());
imageLoader.displayImage(item.getDrawable(), icon, R.drawable.ic_launcher);
icon.setPadding(15, 15, 15, 15);

layout.addView(icon);

TextView label = new TextView(context);
label.setTag("text");
label.setText(item.getName());
label.setTextColor(Color.BLACK);
label.setGravity(Gravity.TOP | Gravity.CENTER_HORIZONTAL);

label.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT));

layout.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
layout.setWeightSum(3f);
layout.addView(label);

我有一个返回 View 的 View 方法,因此我在该方法的末尾返回 return layout;。在这里,我给了权重 3 按钮,这对我不起作用。并且代码显示超过 3 个带有文本的图像,但希望有 3 个图像和底部文本的权重。

最佳答案

LinearLayout.LayoutParams param = new LinearLayout.LayoutParams(
LayoutParams.MATCH_PARENT,
LayoutParams.MATCH_PARENT, 1.0f);

LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
LayoutParams.WRAP_CONTENT, LayoutParams.MATCH_PARENT);
params.weight = 1.0f;
Button button = new Button(this);
button.setLayoutParams(params);

关于android - 以编程方式 LinearLayout 权重,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23260458/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com