0
선형 레이아웃을 포함하는 frgments 뷰 이외의 항목을 부 풀리는 부분이 있습니다. 그것은 괜찮아요,하지만 지금은 문제가, 내가 그것을 참조하고 선형 레이아웃에서 프로그래밍 방식으로 TextView를 추가하려고하면 오류가 발생합니다. 도움이 필요할 것입니다.java.lang.IllegalStateException : 풍선을 프로그래밍 방식으로 풍선을 부 풀릴 때보기를 추가하지 마십시오.
오류 : java.lang.IllegalStateException : 지정된 자식에 이미 부모가 있습니다. 먼저 부모의 부모에 대해 removeView()를 호출해야합니다.
Fragment.java
public class ShortFrag extends Fragment{
ListView listview;
LinearLayout row1;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
view = inflater.inflate(R.layout.r_fragment, container, false);
listview=(ListView)view.findViewById(R.id.listview);
LayoutInflater myinflater = getLayoutInflater();
ViewGroup myHeader = (ViewGroup) myinflater.inflate(R.layout.helper, listview, false);
row1= headerViewHolder.findViewById(R.id.linear);
TextView tv = getTextView(getTextView("button_one","button"));
//error here
row1.addView(tv);
return view;
}
private TextView getTextView(String text, String tag) {
TextView textView = new TextView(getActivity());
textView.setTextColor(ContextCompat.getColor(getActivity(), R.color.black));
textView.setTag(tag);
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
ViewGroup.LayoutParams.WRAP_CONTENT,
ViewPager.LayoutParams.WRAP_CONTENT
);
textView.setLayoutParams(params);
textView.setGravity(Gravity.CENTER);
textView.setText(text);
textView.setPadding(10, 5, 10, 5);
params.setMargins(10, 0, 10, 0);
return textView;
}
}
r_fragment
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:orientation="vertical">
<Listview
android:id="@+id/listview"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>
helper.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:orientation="vertical">
<LinearLayout
android:id="@+id/linear"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"/>
</LinearLayout>
'row1.add을 View (getTextView ("button_one", "button"))); - 주어진 코드로, 컴파일되지 않으므로 예외를 throw 할 수 없습니다. 실제 코드는 무엇입니까? –
이 줄 바꾸기 row1.addView (getTextView (getTextView ("button_one", "button")))); row1.addView (getTextView ("button_one", "button")); – Meenal
마이크가 맞았고 내 문제를 해결했습니다. 나는 나의 질문을 편집했다. 하지만, 그 이유를 말해 줄 수 있어요? –