Why does LayoutInflater ignore the layout_width and layout_height layout parameters I've specified?

匿名 (未验证) 提交于 2019-12-03 01:58:03

问题:

I've had severe trouble getting LayoutInflater to work as expected, and so did other people: How to use layoutinflator to add views at runtime?.

Why does LayoutInflater ignore the layout parameters I've specified? E.g. why are the layout_width and layout_height values from my resources XML not honored?

回答1:

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 populate a layout using LayoutInflater.

Before we get started see what LayoutInflater.inflate() parameters look like:

  • resource: ID for an XML layout resource to load (e.g., R.layout.main_page)
  • root: Optional view to be the parent of the generated hierarchy (if attachToRoot is true), or else simply an object that provides a set of LayoutParams values for root of the returned hierarchy (if attachToRoot is false.)
  • attachToRoot: Whether the inflated hierarchy should be attached to the root parameter? If false, root is only used to create the correct subclass of LayoutParams for the root view in the XML.

  • Returns: The root View of the inflated hierarchy. If root was supplied and attachToRoot is true, this is root; otherwise it is the root of the inflated XML file.

Now 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 (red.xml):

Now LayoutInflater is used with several variations of call parameters

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);     } } 

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 findViewById()). The calling convention you most likely would like to use is therefore this one:

loadedView = LayoutInflater.from(context)                 .inflate(R.layout.layout_to_load, parent, false); 

To help with layout issues, the hierarchy viewer is highly recommended.



回答2:

andig is correct that a common reason for LayoutInflater ignoring your layout_params would be because a root was not specified. Many people think you can pass in null for root. This is acceptable for a few scenarios such as a dialog, where you don't have access to root at the time of creation. A good rule to follow, however, is that if you have root, give it to LayoutInflater.

I wrote an in-depth blog post about this that you can check out here:

https://www.bignerdranch.com/blog/understanding-androids-layoutinflater-inflate/



易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!