동적 생성 레이아웃의 ID를 설정하는 방법은 무엇입니까?
프로그래밍 방식으로 생성 된 레이아웃의 일부 뷰 (textview, imageview 등)에 ID를 부여하고 싶습니다. 그래서 ID를 설정하는 가장 좋은 방법은 무엇입니까?
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);
도움이되기를 바랍니다.
Google은 마침내 프로그래밍 방식으로 생성 된 뷰에 대한 고유 ID 생성의 필요성을 깨달았습니다.
API 레벨 17 이상에서는 다음과 같이 View.generateViewId ()를 사용할 수 있습니다 .
view.setId(View.generateViewId());
폴더를 res/values/ids.xml
만들고
<?xml version="1.0" encoding="utf-8"?>
<resources>
<item name="refresh" type="id"/>
<item name="settings" type="id"/>
</resources>
활동 클래스에서 다음과 같이 호출하십시오.
ImageView refreshImg = new ImageView(activity);
ImageView settingsImg = new ImageView(activity);
refreshImg.setId(R.id.refresh);
settingsImg .setId(R.id.settings);
이것은 작동하지 않습니다.
layout.setId(100);
그러나 이것은 :
int id=100;
layout.setId(id);
또한 이것도 (크레딧 : Aaron Dougherty) :
layout.setId(100+1);
호환성을 위해 다음을 사용하십시오. ViewCompat.generateViewId()
다음과 같이 프로그래밍 방식으로 구성 요소 그룹을 레이아웃에 반복적으로 배치하는 경우 :
<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
}
또는 추가하려는 구성 요소 그룹 하나만 리소스에있는 다른 구성 요소의 ID와 충돌하지 않는 큰 정수를 사용할 수 있습니다.
이 코드를 사용해보십시오! 이것은 아이디어를 제공하는 데 도움이 될 것입니다.
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는보기의 내용에 액세스하는 데만 중요합니다.
그러나 태그는 각 뷰를 서로 고유하게 만드는 요소입니다.
도움이 되었기를 바랍니다.
ID를 리소스로 정의한 다음 setId()
보기를 사용 하여 설정할 수 있습니다. xml 파일에서 ID를 다음과 같이 정의하십시오.
<resources>
<item type="id">your id name</item>
</resources>
그런 다음 Java 파일에서 ..
layout.setId(R.id.<your id name>)
I went about it in a different way.
Created my own R.id HashMap.
Than used the value for the view.setID() part.
String is the id, Integer its value
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;
}
}
}
and to set:
String idName = "someName";
int generated_R_id = getRandomId();
idMap.put(idName,generated_R_id);
someView.setId(idMap.get(idName));
Now, at any point you can just:
ImageView test = (ImageView)
mainActivity.findViewById(idMap.get("somName"));
and to test it -
test.setImageResource(R.drawable.differentPic);
P.S. I've written it like this for ease of explain.
Obviously it can be written better andmore compact.
All you need to do is call ViewCompat.generateViewId()
For Example:
val textView = TextView(this)
textView.text = "Hello World"
textView.setLayoutParams(ViewGroup.LayoutParams(MATCH_PARENT, WRAP_CONTENT))
textView.id = ViewCompat.generateViewId()
참고URL : https://stackoverflow.com/questions/8937380/how-to-set-id-of-dynamic-created-layout
'Programing' 카테고리의 다른 글
TortoiseSVN이 인증 세부 정보를 저장하지 않음 (0) | 2020.11.26 |
---|---|
사용자가 uinavigationcontroller에서 뒤로 버튼을 눌렀는지 확인 하시겠습니까? (0) | 2020.11.26 |
ASP.NET MVC 1.0 AfterBuilding 뷰가 TFS 빌드에서 실패 함 (0) | 2020.11.26 |
양식 제출을 클릭하면 Google Analytics에서 이벤트 추적 (0) | 2020.11.26 |
El Capitan으로 업그레이드 한 후 잘못된 활성 개발자 경로 오류 (0) | 2020.11.26 |