0

アクティビティ スクリーンショット

私の MainActivity では、上の画像に示されているように 2 つのアイコンを配置したいと考えています (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 に答える