0

活动截图

在我的 MainActivity 上,我想放置两个图标,如上图所示。(Addidas 徽标)。

有谁知道我可以如何在android上存档这个?

4

1 回答 1

0

您可以LinearLayout为此标头实现一个。

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="horizontal" >

        //Put elements here
         <ImageView/>
         <TextView/>
         <ImageView/>

    </LinearLayout>

您可以在这里查看常见布局。

于 2013-09-17T19:11:53.087 回答