1

我有一个带有scrollview. 在里面,我有一个LinearLayoutand Button

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="10dp"
android:scrollbars="none">

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




    <Button
        android:id="@+id/ok"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:text="OK" />
</LinearLayout>

我正在使用 a dialogfragment查看此布局。我也在尝试textview动态添加一个。下面是我的课

public class SecondLevelAdapter extends BaseExpandableListAdapter {
    private void showPreFilledData(String string) {
    final Dialog dialog = new Dialog(context);
    dialog.setContentView(R.layout.cust_data_layout);
    dialog.setTitle("Customer Info");

    final LinearLayout linearLayout = new LinearLayout(context);
    linearLayout.findViewById(R.id.ll_details);

    TextView textView1 = new TextView(context);
    textView1.setLayoutParams(new LinearLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,
            ViewGroup.LayoutParams.WRAP_CONTENT));
    textView1.setGravity(Gravity.CENTER);
    textView1.setText("programmatically created TextView1");
    linearLayout.addView(textView1);


    
    Button ok;

    ok = (Button) dialog.findViewById(R.id.ok);

    ok.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            dialog.dismiss();
        }
    });
    Window window = dialog.getWindow();
    window.setLayout(LinearLayout.LayoutParams.MATCH_PARENT, TableLayout.LayoutParams.MATCH_PARENT);
    dialog.show();

}
}

但是当我启动应用程序时,我无法看到textview.

在此处输入图像描述

我一定错过了一些我不知道的东西。

任何帮助将不胜感激。

4

5 回答 5

2

您正在创建一个新的LinearLayout而不是引用 xml 文件中的那个。showPrefilledData将您的功能更改为,

private void showPreFilledData(String string) {
        final Dialog dialog = new Dialog(context);
        dialog.setContentView(R.layout.cust_data_layout);
        dialog.setTitle("Customer Info");

        LinearLayout linearLayout = dialog.findViewById(R.id.ll_details);

        TextView textView1 = new TextView(context);
        textView1.setLayoutParams(new LinearLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,
                ViewGroup.LayoutParams.WRAP_CONTENT));
        textView1.setGravity(Gravity.CENTER);
        textView1.setText("programmatically created TextView1");
        linearLayout.addView(textView1);



        Button ok;

        ok = (Button) dialog.findViewById(R.id.ok);

        ok.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                dialog.dismiss();
            }
        });
        Window window = dialog.getWindow();
        window.setLayout(LinearLayout.LayoutParams.MATCH_PARENT, TableLayout.LayoutParams.MATCH_PARENT);
        dialog.show();

    }
于 2021-05-24T07:31:35.510 回答
0

Forgot Everything 删除了冗余代码。使用此代码并设置您的自定义对话框 UI 布局以替换为 R.layout.my_dilog_ui 并将其放入您的代码中。

 try {
        LayoutInflater factory = LayoutInflater.from(context);
        View views = factory.inflate(R.layout.my_dilog_ui, null);

        AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(context);
        AlertDialog alertDialog = alertDialogBuilder.create();

        alertDialogBuilder.setView(views);

        TextView tv_title = (TextView) views.findViewById(R.id.title);
        TextView title = views.findViewById(R.id.my_title);
        Button close = views.findViewById(R.id.close);

        tv_title.setText("Are you sure do you want to return your Order?");
        title.setText("Return request can not be revoked ");

        close.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                alertDialog.dismiss();
            }
        });

    
        alertDialog.setView(views);
   
        alertDialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
        alertDialog.show();
    } catch (Exception e) {

    }
于 2021-05-21T05:41:58.253 回答
0

dialog.setContentView(R.layout.cust_data_layout);

final LinearLayout linearLayout = new LinearLayout(context);

哈哈,看起来您的对话框内容视图与您的 LinearLayout 无关。让我们在两者中使用相似的视图。

于 2021-05-26T03:49:11.363 回答
0

LinearLayoutxml文件中获取的方式不正确。

final LinearLayout linearLayout = new LinearLayout(context);
linearLayout.findViewById(R.id.ll_details);

在我的理解中,这创造了一个新LinearLayout的尝试来寻找一个带有 id 的子视图ll_details。我想你想要

final LinearLayout linearLayout = (LinearLayout) findViewById(R.id.ll_details);

然后,向其中添加视图LinearLayout应该可以工作。

于 2021-05-17T19:11:06.367 回答
0

您需要调用 addView 以编程方式添加视图,但您需要做更多的事情才能使其工作。

如果您通过构造函数创建视图(例如:TextView textView = new TextView();),则需要在新构建的视图上调用 setLayoutParams,传入父视图的 LayoutParams 内部类的实例,然后再添加新的构造子到父视图。

例如,假设您的 LinearLayout 具有 id R.id.main_layout,您的 onCreate() 函数中可能有以下代码:

 LinearLayout myLayout = findViewById(R.id.main_layout);

 TextView textView = new TextView(this);
 textView.setLayoutParams(new LinearLayout.LayoutParams(
                                 LinearLayout.LayoutParams.MATCH_PARENT,
                                 LinearLayout.LayoutParams.MATCH_PARENT));

 myLayout.addView(textView);

确保设置 LayoutParams 很重要。每个视图至少需要一个 layout_width 和一个 layout_height 参数。获得正确的内部阶级也很重要。

另外,我不确定您的用例,但或者您可以在 xml 本身中添加一个视图,其可见性为 GONE,稍后当您需要它时,您可以将其可见性更改为 VISIBLE。当可见性设置为 GONE 时,在可见性变为可见之前它不会占用任何空间。

于 2021-05-20T06:55:14.090 回答