Android 膨胀来自其他布局的视图

Android inflating views from other layouts

我是 android 开发的新手,我正在尝试找到一种方法,每次按下按钮时都会在不同的位置重复膨胀视图,因此每个膨胀的视图都有其自己的位置:

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.RelativeLayout;
import android.widget.TextView;

public class teamCreateScreen extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.team_locate_layout);
}
public void createTeam(View view) {
    final RelativeLayout rlTeam = (RelativeLayout) findViewById(R.id.rlTeam);
    View teamBox = View.inflate(this, R.layout.team_box, rlTeam);

    final TextView teamBoxView = (TextView) findViewById(R.id.team_task_box);
    teamBoxView.setX(0);
    teamBoxView.setY(230);
}
}

布局的XML代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/rlTeam">

<Button
    android:layout_width="60dp"
    android:layout_height="60dp"
    android:id="@+id/teamAddBtn"
    android:text="+"
    android:textSize="30sp"
    android:onClick="createTeam"/>

</RelativeLayout>

XML 正在膨胀的视图代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<TextView
    android:layout_width="192dp"
    android:layout_height="120dp"
    android:id="@+id/team_task_box"
    android:text="New Team" />

</RelativeLayout>

我想用同一个view来inflate布局中坐标不同的多个框。每次我按下按钮再次膨胀视图时,它都会在相同的坐标中膨胀框,以便它们重叠。我需要让第二个盒子出现在第一个盒子的右边,第三个盒子在第一个盒子下面,依此类推,就像一个盒子网格。

试试这个代码,告诉我它是否有效。去除布局膨胀

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.RelativeLayout;
import android.widget.TextView;

public class teamCreateScreen extends Activity {

int i=0;

@Override
protected void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);
   setContentView(R.layout.team_locate_layout);
}
public void createTeam(View view) {
   final RelativeLayout rlTeam = (RelativeLayout) findViewById(R.id.rlTeam);
   RelativeLayout.LayoutParams relativeParams = new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
   TextView tv=new TextView(getApplicationContext());
   if(tv.getId()>0) {
      relativeParams.addRule(RelativeLayout.BELOW, tv.getId());
   }
   tv.setId(i);
   r1Team.addView(tv, relativeParams);
   i++;
}
}

int i=0; 声明为全局变量并在 createTeam() 方法中递增它。