在我的 MainActivity 上,我想放置两个图标,如上图所示。(Addidas 徽标)。
有谁知道我可以如何在android上存档这个?
您可以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>
您可以在这里查看常见布局。