gpt4 book ai didi

android - 如何将 ListView 按钮拉伸(stretch)到屏幕的全宽

转载 作者:行者123 更新时间:2023-11-29 23:44:14 25 4
gpt4 key购买 nike

我的 activity_main.xml:

<ListView
android:id="@+id/MyListItem"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
app:layout_constraintEnd_toEndOf="parent"
tools:layout_editor_absoluteY="8dp" />

我的mainactivity.java:

public class MainActivity extends AppCompatActivity {
private String[] mMonthArray = { "Январь", "Февраль", "Котомарт", "Апрель", "Май",
"Июнь", "Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь",
"Декабрь" };

private ArrayAdapter<String> mMonthAdapter;


@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

ListView myListView = findViewById(R.id.MyListItem);
mMonthAdapter = new ArrayAdapter<>(this,
android.R.layout.simple_list_item_1, mMonthArray);
myListView.setAdapter(mMonthAdapter);

}
}

我在 ListView 中的按钮没有像 ListView 那样全宽:

enter image description here

最佳答案

您的 ListView 换行到内容宽度。尝试将宽度更改为 match_parent,如下所示。

<ListView
android:id="@+id/MyListItem"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
app:layout_constraintEnd_toEndOf="parent"
tools:layout_editor_absoluteY="8dp" />

关于android - 如何将 ListView 按钮拉伸(stretch)到屏幕的全宽,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51588496/

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