Android-在视图内包装按钮

时间:2020-03-16 15:14:45

标签: android android-button

我正在尝试使按钮在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);
    }

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

2 个答案:

答案 0 :(得分:1)

我最终使用了FlexboxLayout,它对此非常有用。感谢那些提供建议的人!

答案 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>

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

 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);
}