Android-在视图内换行按钮

问题描述 投票:0回答:1

我正在尝试将按钮包装在Android的LinearLayout中,但它们只是继续位于视图的右侧(屏幕快照中显示的单词应为“ HELLO”,因此我希望将“ O”下拉到下一行)。

enter image description here

我正在以编程方式添加按钮,但是即使将它们编码到XML布局文件中,它们也不会自动包装。这是带有LinearLayout容器的布局文件,我正在其中动态添加按钮:

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_constrainedWidth="true"
    tools:context=".LetterTileView">

    <LinearLayout
        android:id="@+id/TilesContainer"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constrainedWidth="true"
        android:orientation="horizontal">
    </LinearLayout>

这是我用来创建和添加平铺按钮的代码:

Context context = this;
    LinearLayout layout = (LinearLayout) findViewById(R.id.TilesContainer);
    LayoutParams params = new LayoutParams( LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT );
    params.setMargins(50, 50, 0, 0);
    for (int i=0;i<wordLength;i++) {
        Button tileButton = new Button(this);
        tileButton.setLayoutParams(params);
        tileButton.setText(wordStringtoLetters[i]);
        tileButton.setId(i);
        tileButton.setBackgroundResource(R.drawable.tile_button);
        tileButton.setTextSize(TypedValue.COMPLEX_UNIT_SP, 36);
        layout.addView(tileButton);
    }

任何建议将不胜感激。谢谢!

android android-button
1个回答
0
投票

首先,不需要使用ConstraintLayout,您可以将LinearLayout用作父布局。

然后,为了在一行中显示所有按钮,您必须为XML中的LinearLayout设置权重,并为其添加的视图设置权​​重。

xml文件应如下所示:

<LinearLayout
    android:id="@+id/TilesContainer"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:weightSum="5"
    app:layout_constrainedWidth="true"
    android:orientation="horizontal">
</LinearLayout>

并且在代码中,您应该通过将,1.0f添加到LayoutParam中来为每个视图设置权​​重:

 Context context = this;
LinearLayout layout = (LinearLayout) findViewById(R.id.TilesContainer);
LayoutParams params = new LayoutParams( LayoutParams.WRAP_CONTENT, 
LayoutParams.WRAP_CONTENT,1.0f );
params.setMargins(50, 50, 0, 0);
for (int i=0;i<wordLength;i++) {
    Button tileButton = new Button(this);
    tileButton.setLayoutParams(params);
    tileButton.setText(wordStringtoLetters[i]);
    tileButton.setId(i);
    tileButton.setBackgroundResource(R.drawable.tile_button);
    tileButton.setTextSize(TypedValue.COMPLEX_UNIT_SP, 36);
    layout.addView(tileButton);
}
© www.soinside.com 2019 - 2024. All rights reserved.