gpt4 book ai didi

Android如何在linearlayout中逐行编程添加Textview

转载 作者:行者123 更新时间:2023-11-29 21:10:15 26 4
gpt4 key购买 nike

我试图以编程方式在线性布局中添加 TextView ,但问题是,当我添加超过 5 或 7 个 TextView 时,其他 TextView 不会出现,所以我想在下一行添加这些 TextView ,我怎样才能将这些 TextView 添加到下一行。请帮助我。在此先感谢。

当我添加超过特定数量的 TextView 时,它应该添加到下一行。我的代码在下面给出

     ArrayList<HashMap<String, String>> sel = new ArrayList<HashMap<String, String>>();
LinearLayout langaugelayout = (LinearLayout) findViewById(R.id.languagelayout);



for (int i = 0; i < sel.size(); i++) {
LinearLayout.LayoutParams llp = new LinearLayout.LayoutParams(
LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
llp.setMargins(7, 0, 0, 0);
TextView lparams = (TextView) inflater.inflate(R.layout.textview,
null);
TextView tv = (TextView) lparams.findViewById(R.id.texted);
tv.setText(sel.get(i).get("lname"));
tv.setTypeface(Base.typeFaces.get(sel.get(i).get("id")));
tv.setLayoutParams(llp);
langaugelayout.addView(tv);
}

我在线性布局中添加这个。 xml在下面

 <LinearLayout
android:id="@+id/secondlayout"
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_below="@+id/firstlayout"
android:layout_marginBottom="10dp"
android:layout_weight="0.05"
android:gravity="center"
android:orientation="horizontal" >

<LinearLayout /////// adding in this layout..
android:id="@+id/languagelayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >


</LinearLayout>

<TextView
android:id="@+id/addmore"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Add More"
android:layout_marginLeft="10dp"
android:textColor="@android:color/black"
android:textSize="25sp" />
</LinearLayout>

最佳答案

它们看起来很好,遗憾的是添加了一些它们不适合您的屏幕:-)

这就是您要找的Line-breaking widget layout for Android

关于Android如何在linearlayout中逐行编程添加Textview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23130916/

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