gpt4 book ai didi

android - 按钮超出布局时会被挤压

转载 作者:行者123 更新时间:2023-11-29 02:04:33 24 4
gpt4 key购买 nike

在我的代码中,我动态地创建了按钮。当我创建多个按钮时出现以下问题:

enter image description here

当按钮被按下时,我如何获取它?

我的代码:

    private void showGlossary(String ContentTab) {
LinearLayout layout;
LinearLayout.LayoutParams p;
layout = (LinearLayout) findViewById(R.id.GlossaryTab1);

p = new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.WRAP_CONTENT,
LinearLayout.LayoutParams.FILL_PARENT
);

Glossary = (TextView) findViewById(R.id.glossary);

Glossary.setText("Glossário:");
while (ContentTab.indexOf("<gloss") != -1) {
ContentTab = ContentTab.substring(ContentTab.indexOf("<gloss"));
uri = ContentTab.substring(ContentTab.indexOf("<gloss") + 1, ContentTab.indexOf(">"));
Button myButton = new Button(this);
myButton.setText(Html.fromHtml(ContentTab.substring(ContentTab.indexOf(">") + 1, ContentTab.indexOf("</gloss>"))));
myButton.setLayoutParams(p);
myButton.setContentDescription(uri);
layout.addView(myButton);
myButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view)
{
Toast.makeText(ShowPhytoterapicActivity.this, Html.fromHtml(getGlossaryItem(view.getContentDescription().toString())), Toast.LENGTH_LONG).show();
}
});
if(ContentTab.indexOf("</gloss>") != -1)
ContentTab = ContentTab.substring(ContentTab.indexOf("</gloss>") + 9);
}
}

我的 XML:

            <LinearLayout 
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:id="@+id/GlossaryTab1"
android:orientation="horizontal"
>
</LinearLayout>

谁能帮帮我?谢谢!

最佳答案

您可以将所有按钮的权重设置为 1,但这会导致所有按钮都变成“压扁的”。

您认为 Horizo​​ntalScrollField 可行吗?我认为这可能是最好的解决方案。

只需将 LinearLayout 包裹在 Horizo​​ntalScrollField 中,然后像现在一样将按钮添加到 LinearLayout

关于android - 按钮超出布局时会被挤压,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10760011/

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