如何在运行时添加相同的视图

时间:2017-12-28 05:39:58

标签: android android-studio android-recyclerview layout-inflater

我想设计一个像这样的视图

enter image description here

它重复多次的相同观点,即当点击添加项目时,它应该添加相同的视图(在开头应该只有一行)。我不明白如何制作一个,似乎我无法使用 RecyclerView 制作这样的视图。也许我可以使用 LayoutInflater 制作一个。但是如何?

2 个答案:

答案 0 :(得分:0)

是的,您可以使用布局充气器添加它:

<ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <LinearLayout
            android:id="@+id/main_container"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">
        </LinearLayout>
    </ScrollView>

活动:

LinearLayout linearLayout = findViewById(R.id.main_container);
                LinearLayout childLayout = (LinearLayout) LayoutInflater.from(this).inflate(R.layout.child_layout, null, false);
                childLayout.setTag(linearLayout.getChildCount() + 1); // set some Id
                linearLayout.addView(childLayout); // Adding for first time
                for(int i=0; i<5; i++) {
                    childLayout.setTag(linearLayout.getChildCount() + 1);
                    linearLayout.addView(childLayout); //child_layout is your row layout design
                }

要回复:

 JSONObject jsonObject = new JSONObject();
            for (int i = 0; i < linearLayout.getChildCount(); i++) {
                View childLayout = linearLayout.getChildAt(i);
                if (childLayout instanceof LinearLayout) {
                    //get SubViews of you child_layout and get thos value 
                    // for id int id = (int) childLayout.getTag()
                    //add the values to jsonObject
                }
            }

答案 1 :(得分:0)

好了创建一个Model类:

 public  class Product{
     int product_id;
     int product_size;
     int product_qty;

        //provide all the getter setters and constructor
         public Product(int product_id,int product_size,int product_qty){
                this.product_id = product_id;
                this.product_size = product_size;
                this.product_qty = product_qty;
         }
       }

现在在Recyclerview Adapter中使用这个arraylist:

ArrayList<Product> productList = new ArrayList<Product>

点击添加按钮时,只需在此列表中添加虚拟值,如:

   productList.add(new Product(0,0,0));

在您的recyclerview适配器内部提供您选择的布局

因为以后如果您想设置值,您可以轻松地使用位置进行操作,并且在点击提交时您也可以选择整个列表