I have a LinearLayout set height as match_parent as below:
First of all: your LinearLayout
id is left_layout
, not list_layout
.
Also, ll_list.getHeight()
will return 0 (as well as ll_list.getWidth()
) if it's not drawed yet.
Solution would be to get the height after your view is layouted:
ll_list.post(new Runnable(){
public void run(){
int height = ll_list.getHeight();
}
});
And make sure that your ll_list
is final
.