Suppose a layout file declares a LinearLayout called LL that contains two child Views, View1 and View2. In the layout file View1 is given an android:layout_weight of 2 and a layout_width of 0dp. View 2 is given an android:layout_weight of 3 and a layout_width of 0dp. In this example, which of the following statements must be true? A. View 2 takes up 3/5 of LL's width. B. View 1 takes up 2/5 of the display's width. C. View 2 takes up 2/3 of the display's width. D. View 1 takes up 2/3 of LL's width.