android 关于layoutinflater 中的root 跟 attach to root的研究
I've investigated this issue, referring to the LayoutInflater docs and setting up a small sample demonstration project. The following tutorials shows how to dynamically populated a layout using LayoutInflater. Before we get started see what LayoutInflater.inflate parameters look like: Not for the sample layout and code. Main layout (main.xml): Added into this container is a separate TextView, visible as small red square if layout parameters are successfully applied from xml (smallred.xml): Now LayoutInflater is used with several variations of call parameters The actual results of the parameter variations are documented in the code. SYNOPSIS: Calling LayoutInflater without specifying root leads to inflate call ignoring the layout parameters from the xml. Calling inflate with root not equal null and attachRoot=true does load the layout parameters, but returns the root object again, which prevents further layout changes to the loaded object (unless you can find it using To help with layout issues, the hierarchy viewer is highly recommended.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/vertical_container" android:orientation="vertical"
android:layout_width="fill_parent" android:layout_height="fill_parent">
</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="25dip" android:layout_height="25dip"
android:background="#ff0000" android:text="smallred" />
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.vertical_container);
// result: layout_height=wrap_content layout_width=match_parent
view = LayoutInflater.from(getBaseContext()).inflate(R.layout.smallred,
null);
parent.addView(view);
// result: layout_height=100 layout_width=100
view = LayoutInflater.from(getBaseContext()).inflate(R.layout.smallred,
null);
parent.addView(view, 100, 100);
// result: layout_height=25dip layout_width=25dip
// view=textView due to attachRoot=false
view = LayoutInflater.from(getBaseContext()).inflate(R.layout.smallred,
parent, false);
parent.addView(view);
// result: layout_height=25dip layout_width=25dip
// 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(getBaseContext()).inflate(R.layout.smallred,
parent, true);
}
}
findViewById
). The calling convention you most likely would like to use is therefore this one:loadedView = LayoutInflater.from(getBaseContext()).inflate(R.layout.layout_to_load, parent, false);