LayoutInflater가 예상대로 작동하는 데 심각한 문제가 있었고 다른 사람들도 마찬가지였습니다. 런타임에 layoutinflator를 사용하여 뷰를 추가하는 방법은 무엇입니까? .
LayoutInflater가 지정한 레이아웃 매개 변수를 무시하는 이유는 무엇입니까? 예를 들어 내 리소스 XML 의 layout_width
및 layout_height
값이 존중되지 않는 이유는 무엇입니까?
LayoutInflater가 예상대로 작동하는 데 심각한 문제가 있었고 다른 사람들도 마찬가지였습니다. 런타임에 layoutinflator를 사용하여 뷰를 추가하는 방법은 무엇입니까? .
LayoutInflater가 지정한 레이아웃 매개 변수를 무시하는 이유는 무엇입니까? 예를 들어 내 리소스 XML 의 layout_width
및 layout_height
값이 존중되지 않는 이유는 무엇입니까?
답변:
LayoutInflater 문서를 참조 하고 작은 샘플 데모 프로젝트를 설정 하여이 문제를 조사했습니다 . 다음 자습서는를 사용하여 레이아웃을 동적으로 채우는 방법을 보여줍니다 LayoutInflater
.
시작하기 전에 어떤 LayoutInflater.inflate()
매개 변수가 다음과 같은지 확인하십시오 .
R.layout.main_page
)attachToRoot
것입니다 true
다른 사람), 또는 단순히 세트 제공하는 객체 LayoutParams
반환 된 계층 구조의 루트 값을 (경우 attachToRoot
입니다 false
.)attachToRoot : 팽창 된 계층을 루트 매개 변수에 첨부 해야하는지 여부 false 인 경우 root는 LayoutParams
XML에서 루트 뷰에 대한 올바른 서브 클래스를 작성하는 데만 사용됩니다 .
반환 : 팽창 된 계층의 루트 뷰. 루트가 공급 된 경우 attachToRoot
이며 true
,이 루트입니다; 그렇지 않으면 팽창 된 XML 파일의 루트입니다.
이제 샘플 레이아웃과 코드를 살펴 보겠습니다.
메인 레이아웃 ( main.xml
) :
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent">
</LinearLayout>
이 컨테이너에 추가 된 TextView는 XML ( red.xml
) 에서 레이아웃 매개 변수가 성공적으로 적용된 경우 작은 빨간색 사각형으로 표시됩니다 .
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="25dp"
android:layout_height="25dp"
android:background="#ff0000"
android:text="red" />
이제는 LayoutInflater
다양한 통화 매개 변수와 함께 사용됩니다.
public class InflaterTest extends Activity {
private View view;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
ViewGroup parent = (ViewGroup) findViewById(R.id.container);
// result: layout_height=wrap_content layout_width=match_parent
view = LayoutInflater.from(this).inflate(R.layout.red, null);
parent.addView(view);
// result: layout_height=100 layout_width=100
view = LayoutInflater.from(this).inflate(R.layout.red, null);
parent.addView(view, 100, 100);
// result: layout_height=25dp layout_width=25dp
// view=textView due to attachRoot=false
view = LayoutInflater.from(this).inflate(R.layout.red, parent, false);
parent.addView(view);
// result: layout_height=25dp layout_width=25dp
// parent.addView not necessary as this is already done by attachRoot=true
// view=root due to parent supplied as hierarchy root and attachRoot=true
view = LayoutInflater.from(this).inflate(R.layout.red, parent, true);
}
}
매개 변수 변형의 실제 결과는 코드에 문서화되어 있습니다.
시놉시스 :LayoutInflater
루트를 지정하지 않고 호출 하면 XML의 레이아웃 매개 변수를 무시하고 호출이 팽창합니다. 루트 동일하지와 부풀려를 호출 null
하고하는 것은 attachRoot=true
레이아웃 매개 변수를로드 않지만, 반환 (당신이 그것을 사용 발견 할 수있는 경우를 제외하고는로드 된 객체에 추가 레이아웃 변경을 방지 다시 루트 객체 findViewById()
). 따라서 가장 많이 사용하려는 호출 규칙은 다음과 같습니다.
loadedView = LayoutInflater.from(context)
.inflate(R.layout.layout_to_load, parent, false);
레이아웃 문제를 해결하려면 Layout Inspector 를 적극 권장합니다.
Activity
은 서브 클래스이며 Context
대답의 예는 범위에 있으므로이 대답 Activity
을 위해 대신 getBaseContext()
하는 this
것으로 대체하는 것이 더 간단 합니다.
andig는 layout_params를 무시하는 LayoutInflater의 일반적인 이유는 루트가 지정되어 있지 않기 때문입니다. 많은 사람들은 루트로 널을 전달할 수 있다고 생각합니다. 이는 생성시 루트에 액세스 할 수없는 대화 상자와 같은 몇 가지 시나리오에서 허용됩니다. 그러나 좋은 규칙은 루트가 있으면 LayoutInflater에 제공하는 것입니다.
여기에서 확인할 수있는 자세한 블로그 게시물을 작성했습니다.
https://www.bignerdranch.com/blog/understanding-androids-layoutinflater-inflate/
This is acceptable for a few scenarios such as a dialog
그게 내가 필요한 전부
위의 주요 답변에 추가하고 싶습니다.
하지만 그것을 시도했지만 recyclerView는
목표에 도달하기 위해 팽창 한 후 다음 줄을 추가 해야하는 화면에 모든 항목을 늘리기 시작했습니다.
itemLayoutView.setLayoutParams(new RecyclerView.LayoutParams(RecyclerView.LayoutParams.MATCH_PARENT, RecyclerView.LayoutParams.WRAP_CONTENT));
나는 이미이 매개 변수를 xml로 추가했지만 제대로 작동하지 않았 으며이
줄로 모두 괜찮습니다.