我有一个XML文件,我在其中使用LinearLayout垂直显示信息。我需要做的就是创建水平LinearLayout并在其中附加一个图像和一个TextView。然后我需要在我的主垂直LinearLayout上显示这个水平LinearLayout。我该如何做到这一点?我需要用java编程来做到这一点
nkoocmlb1#
首先创建一个方向为垂直的LinearLayout,然后在其中创建另一个方向为水平的LinearLayout,并使用图像和文本视图。
<LinearLayout android:orientation="vertical" > //Your other views <LinearLayout android:orientation="horizontal" > // Your image and textview </LinearLayout> </LinearLayout>
1条答案
按热度按时间nkoocmlb1#
首先创建一个方向为垂直的LinearLayout,然后在其中创建另一个方向为水平的LinearLayout,并使用图像和文本视图。