gpt4 book ai didi

android - 将按钮添加到 LinearLayout

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

我正在尝试向 LinearLayout 动态添加一个按钮。这是我的代码:

Java

    LayoutInflater inflater = mMainActivity.getLayoutInflater();
View layout = inflater.inflate(R.layout.browse_list_fragment, (ViewGroup) getView(), false);
LinearLayout breadcrumb = (LinearLayout) layout.findViewById(R.id.browse_list_fragment_previous);

Button button = new Button(mMainActivity);
button.setText(name);
button.setTextColor(mMainActivity.getResources().getColor(R.color.action_bar_breadcrumb));
button.setTextSize(22);
button.setTypeface(Typeface.createFromAsset(mMainActivity.getAssets(), "HelveticaNeueBold.ttf"));
button.setTag(mHashMap);

breadcrumb.addView(button, new LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT,
LinearLayout.LayoutParams.WRAP_CONTENT));


XML

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<LinearLayout android:id="@+id/browse_list_fragment_header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@android:color/white">

<Button android:id="@+id/browse_list_fragment_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:text="@string/button_menu"
android:textColor="@color/grey"
android:background="@android:color/transparent"
android:drawableLeft="@drawable/carrot_grey"
android:onClick="buttonClick"/>
</LinearLayout>

<LinearLayout android:id="@+id/browse_list_fragment_previous"
android:layout_width="match_parent"
android:layout_height="100dp"
android:orientation="vertical">

</LinearLayout>

<ListView android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="5dp"
android:paddingLeft="5dp"/>
</LinearLayout>


问题
我没有抛出任何异常,当我连接调试器并单步执行代码时,我可以看到该按钮实际上已添加到布局中。我试过膨胀一个按钮并添加它,Java 和 XML 代码的不同组合,删除代码行,使用 RelativeLayout 作为根布局,删除布局的不同部分并使用不同的宽度和高度,但我无法理解这个按钮显示在屏幕上。有人可以看到我做错了什么或至少指出正确的方向吗?我将不胜感激。

最佳答案

你用 false 作为最后一个参数调用了 inflater.inflate():

View layout = inflater.inflate(R.layout.browse_list_fragment,
(ViewGroup) getView(), false);

所以您没有将布局添加到任何 View ,因此看不到您添加到该布局的按钮。尝试使用 true 调用 inflate() 或稍后将布局添加到 View 。

关于android - 将按钮添加到 LinearLayout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17032341/

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