使用片段的android studio中不显示动态按钮

Posted

技术标签:

【中文标题】使用片段的android studio中不显示动态按钮【英文标题】:Dynamic buttons dont show in android studio using fragments 【发布时间】:2021-10-02 18:34:10 【问题描述】:

我正在尝试向片段动态添加按钮,但它们没有显示。

这是 listCharacter.java:

   @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) 
        // Inflate the layout for this fragment
        View view = inflater.inflate(R.layout.fragment_list_character, container, false);
        context = view.getContext();

        for (int i = 1; i <= 20; i++) 
            LinearLayout layout = new LinearLayout(context);
            LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
                    LinearLayout.LayoutParams.MATCH_PARENT,
                    LinearLayout.LayoutParams.WRAP_CONTENT);

            Button firstBtn = new Button(this.context);
            firstBtn.setId(i);
            final int id_ = firstBtn.getId();
/**
 * The text is not updated(?)
 */
            firstBtn.setText("button " + id_);
/**
 * it does not add 20 button, might be on top of each other
 */
            layout.addView(firstBtn, params);

            firstBtn = view.findViewById(R.id.characterNameBtn);
            firstBtn.setOnClickListener(new View.OnClickListener() 
                public void onClick(View view) 
                    Toast.makeText(view.getContext(),
                            "Button clicked index = " + id_, Toast.LENGTH_SHORT)
                            .show();
                    Navigation.findNavController(view).navigate(R.id.action_listCharacter_to_loadCharacter);
                
            );
        

        return view;
    

这是fragment_list_character.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:id="@+id/frameLayout"
    android:layout_
    android:layout_
    android:background="@drawable/background"
    tools:context=".listCharacter"
    android:orientation="vertical">

    <LinearLayout
        android:id="@+id/list_character_name"
        android:layout_
        android:layout_
        android:layout_marginBottom="10dp">
    <Button
        android:id="@+id/characterNameBtn"
        android:layout_
        android:layout_
        android:background="#66000000"
        android:fontFamily="@font/main"
        android:gravity="center"
        android:padding="5dp"
        android:text=""
        android:textColor="#fff"
        android:textSize="40sp"
        />
    </LinearLayout>

</LinearLayout>

我没有收到任何错误消息 atm,但我在运行程序时看不到按钮。 点击有效,它说它的 id 为 20。

【问题讨论】:

您正在尝试显示一些listCharacter 列表并在按钮单击时打开特定字符屏幕loadCharacter。不需要像这样在运行时将按钮添加到线性布局中。您可以使用简单的RecyclerView 来根据需要扩充任意数量的字符;不仅是您的示例中的 20 个。然后为 ViewHolder 对象中的按钮注册一个点击监听器;根据位置,您可以将必要的信息传输到loadCharacter 屏幕。 谢谢!这实际上对我有用!对于那些也尝试重新创建的人,回收查看器对我不起作用,所以我使用了这个代码“ 【参考方案1】:

您正在将按钮添加到您每次通过循环重新创建的 LinearLayout

for (int i = 1; i <= 20; i++) 
    LinearLayout layout = new LinearLayout(context);
    ...

    layout.addView(firstBtn, params)
    ....

layout 永远不会添加到返回的视图中。您需要将按钮添加到view 或您返回的视图的子视图中,以便在屏幕上看到它们。我认为还有一些其他问题,但这是第一个要解决的问题。

【讨论】:

以上是关于使用片段的android studio中不显示动态按钮的主要内容,如果未能解决你的问题,请参考以下文章

.beginTransaction().add 在 Android Studio 中不起作用

片段隐藏在Android中不起作用

在Android Studio片段之间切换时地图片段不隐藏

拖放功能在Android Studio中不起作用。甚至无法点击显示属性

Visual Studio 自定义代码片段在方法定义的参数列表中不起作用

Android Studio 在字符串中不显示“&”符号