如何设置动态创建版式的ID?


Answers:


128

您创建一个ids.xml文件,并将所有必需的id放入其中,如下所示

<?xml version="1.0" encoding="utf-8"?>
<resources>
        <item type="id" name="layout1" />
        <item type="id" name="layout2" />
        <item type="id" name="layout3" />
</resources>

现在,对于动态创建的布局或视图,您可以如下使用这些ID

new_layout1.setId(R.id.layout1);
new_view2.setId(R.id.layout2);
new_layout3.setId(R.id.layout3);

希望对您有帮助。


我不好,它确实有效。但是,仍然不要忽略编码和xml版本声明。
2012年

19
@Nordvind我给abhishek ameta一个不完整的解决方案的想法。他没有提到任何Android版本要求。<?xml ...>声明是基本的东西,因此任何android开发人员都将在* .xml文件中编写。我是否告诉过它可以在所有版本的android中使用??我的代码有什么问题?如果您有相同的要求,那么您正在使用我的答案,但有任何问题要问我,不要这样评论。
Yugandhar Babu 2012年

1
@Nordvind以及SO的投票系统多么无用的另一个示例。太糟糕了,没有办法拒绝评论。
Glenn Maynard

8
这仍然无法说明如何设置动态创建的ID
Ghosh

1
动态创建视图的关键是您可能不知道将需要多少个视图或何时需要它们。在资源中预设ID并没有太大帮助。
landrykapela

62

Google终于意识到需要为以编程方式创建的视图生成唯一的ID。

从API级别17及更高级别开始,可以像这样使用View.generateViewId()

view.setId(View.generateViewId());

4
ViewCompat.generateViewId()如果您定位的API级别较低,也可以使用
Hirbod Behnam

1
这是正确的答案,也是创建ID的唯一动态方式。
Phani Rithvij

18

创建文件夹res/values/ids.xml

<?xml version="1.0" encoding="utf-8"?>

<resources>   
   <item name="refresh" type="id"/>   
   <item name="settings" type="id"/>        
</resources>

在Activity类中这样调用

ImageView refreshImg = new ImageView(activity);
ImageView settingsImg = new ImageView(activity); 

     refreshImg.setId(R.id.refresh);
     settingsImg .setId(R.id.settings);

4
有人问到动态创建的布局。
2012年

1
这就是--->创建文件夹的方式res/values/ids.xml
Bug发生

15

这将无法工作:

layout.setId(100);

但是,这将:

int id=100;
layout.setId(id);

另外,这也是一个(来源:Aaron Dougherty):

layout.setId(100+1);

如此处所述,此解决方案将产生一个编辑器验证错误(类型为ID的预期资源),但可以正常编译。
adamdport

4
实际上,如果您输入int id = 100并不会。显然,如果您将数字加起来就可以了。不要获得xD
Mateusz Winnicki 2014年

3
/感谢@MateuszWinnicki,奇怪的是,添加足够了。setId(100)不起作用,但是setId(99 + 1)起作用
Aaron Dougherty

@jeet ID可能与系统自动设置为100的ID发生冲突吗?
YoussefDir

8

出于兼容性目的,请使用: ViewCompat.generateViewId()


2

如果要以编程方式将一组组件重复放入布局中,如下所示:

<LinearLayout>

      <ImageView>
      <TextView>
      <Button>

      <ImageView>
      <TextView>
      <Button>

      <ImageView>
      <TextView>
      <Button>

      ...
</LinearLayout>

然后,您可以使用for循环并相应地提供ID:

for(int i=0;i<totalGroups;i++)
{
    ImageView img;
    TextView tv;
    Button b;

    ... // set other properties of above components

    img.setId(i);
    tv.setId(i);
    b.setId(i);

    ... //handle all events on these components here only

    ... //add all components to your main layout
}

或者,如果只想添加一组组件,则可以使用任何较大的整数,并且该整数不与Resources中的其他组件的ID冲突。这不会有太大的冲突。


3
如何获取textview和所有其他组件的值?请详细说明。
Anand Savjani

0

试试这个代码!这应该有助于给出一个想法。

activity_prac_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:orientation="vertical">

<TextView
    android:text="@string/edit_message"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/display_txt"
    android:textStyle="bold"
    android:textSize="18sp"
    android:textAlignment="center"
    android:layout_gravity="center_horizontal"/>

<GridLayout
    android:id="@+id/my_grid"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:rowCount="4">


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

    <Button
        android:text="@string/button_send"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/my_btn"
        android:layout_gravity="center_horizontal"/>

    <TextView
        android:text="@string/edit_message"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/my_txt"
        android:textSize="18sp"
        />

</LinearLayout>
</GridLayout>
</LinearLayout>

这是其余的代码

 public class AnotherActivity extends AppCompatActivity {

private int count = 1;

List<Integer> gridArray;
private TextView myDisplayText;
@Override
protected void onCreate( Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    gridArray = new ArrayList<>();
    gridArray.add(Integer.valueOf(1));
    setContentView(R.layout.activity_prac_main);



    findViews();


}
private void findViews(){

    GridLayout gridLayout = (GridLayout)findViewById(R.id.my_grid);
    gridLayout.setColumnCount(4);
    LinearLayout linearLayout = (LinearLayout) gridLayout.findViewById(R.id.linear_view);
    linearLayout.setTag("1");
    Button myButton = (Button) linearLayout.findViewById(R.id.my_btn);
    myButton.setTag("1");
    TextView myText = (TextView) linearLayout.findViewById(R.id.my_txt);
    myText.setText("1");

    myDisplayText = (TextView) findViewById(R.id.display_txt);


    myButton.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {

            TextView txt = (TextView) view;
            myDisplayText.setText("PRESS " + txt.getTag().toString());
            if(count < 24) {

                createView();
            }
            else{
                dialogBox();
            }
        }
    });
}

private void createView(){

    LinearLayout ll = new LinearLayout(this);
    ll.setId(Integer.valueOf(R.id.new_view_id));
    ll.setTag(String.valueOf(count+1));

    Button newBtn = createButton();
    newBtn.setId(Integer.valueOf(R.id.new_btn_id));
    newBtn.setTag(String.valueOf(count+1));

    TextView txtView = createText();
    txtView.setId(Integer.valueOf(R.id.new_txt_id));
    txtView.setTag(String.valueOf(count+1));
    txtView.setText(String.valueOf(count+1));

    GridLayout gridLayout = (GridLayout)findViewById(R.id.my_grid);


   ll.addView(newBtn);
    ll.addView(txtView);
    ll.setOrientation(LinearLayout.VERTICAL);

    gridLayout.addView(ll);



        count++;

}

private Button createButton(){
    Button myBtn = new Button(this);
    myBtn.setText(R.string.button_send);
    myBtn.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {

            TextView txt = (TextView) view;
            myDisplayText.setText("PRESS " + txt.getTag().toString());
            if(count < 24) {

                createView();
            }
            else{
                dialogBox();
            }
        }
    });


    return myBtn;
}
public void dialogBox() {
    AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(this);
    alertDialogBuilder.setMessage("GRID IS FULL!");
    alertDialogBuilder.setPositiveButton("DELETE",
            new DialogInterface.OnClickListener() {

                @Override
                public void onClick(DialogInterface arg0, int arg1) {
                    GridLayout gridLayout = (GridLayout)findViewById(R.id.my_grid);
                    gridLayout.removeAllViews();
                    count = 0;
                    createView();

                }
            });

    alertDialogBuilder.setNegativeButton("CANCEL",
            new DialogInterface.OnClickListener() {

                @Override
                public void onClick(DialogInterface arg0, int arg1) {

                }
            });

    AlertDialog alertDialog = alertDialogBuilder.create();
    alertDialog.show();
}
private TextView createText(){
    TextView myTxt = new TextView(this);
    myTxt.setTextSize(TypedValue.COMPLEX_UNIT_SP, 18);

    return myTxt;
}

}

如您所见,id是在res-> values-> ids文件中创建的。

动态创建视图时,视图的ID相同。

每个TextView共享相同的ID。每个按钮共享相同的ID。每个布局共享相同的ID。

ID仅对访问视图的内容很重要。

但是,Tag是使每个视图彼此唯一的原因。

希望这可以帮助你!


0

您可以将ID定义为资源,然后使用setId()视图进行设置。在xml文件中,定义ID如下:

<resources>
  <item type="id">your id name</item>
</resources>

然后,在java文件中使用as ..

layout.setId(R.id.<your id name>)

0

我以不同的方式去做。
创建了我自己的R.id HashMap。
比用view.setID()部分的值。
字符串是id,整数是它的值

Private HashMap<String, Integer> idMap= new HashMap<String, Integer>();
private int getRandomId(){

    boolean notInGeneralResourses = false;
    boolean foundInIdMap = false;

    String packageName = mainActivity.getPackageName();
    Random rnd = new Random();
    String name ="";

    //Repaet loop in case random number already exists
    while(true) {

        // Step 1 - generate a random id
        int generated_id = rnd.nextInt(999999);

        // Step 2 - Check R.id
        try{
            name = mainActivity.getResources().getResourceName(generated_id);
        }catch(Exception e){
            name = null;
        }

        notInGeneralResourses = false;
        if (name == null || !name.startsWith(packageName)) {
            notInGeneralResourses = true;
        }else{
            notInGeneralResourses = false;
            localLog("Found in R.id list.");
        }

        // Step 3 - Check in id HashMap
        if(notInGeneralResourses){
            List<Integer> valueList = new ArrayList<Integer>(idMap.values());

            foundInIdMap = false;
            for (Integer value : valueList) {
                if (generated_id == value) {
                    foundInIdMap = true;
                    localLog("Found in idMAp.");
                }
            }
        }

        // Step 4 - Return ID, or loop again.
        if (!foundInIdMap) {
            localLog("ID clear for use. "+generated_id);
            return generated_id;
        }
    }
}

并设置:

 String idName = "someName";
 int generated_R_id = getRandomId();
 idMap.put(idName,generated_R_id);

 someView.setId(idMap.get(idName));

现在,您随时可以:

ImageView test = (ImageView) 
mainActivity.findViewById(idMap.get("somName"));

并进行测试-

    test.setImageResource(R.drawable.differentPic);

PS我已经这样写,以便于解释。
显然,它可以写得更好,更紧凑。


0

您需要做的就是打电话 ViewCompat.generateViewId()

例如:

val textView = TextView(this)
textView.text = "Hello World"
textView.setLayoutParams(ViewGroup.LayoutParams(MATCH_PARENT, WRAP_CONTENT))
textView.id = ViewCompat.generateViewId()
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.