私の MainActivity では、上の画像に示されているように 2 つのアイコンを配置したいと考えています (Addidas のロゴ)。
Androidでこれをアーカイブする方法を知っている人はいますか?
私の MainActivity では、上の画像に示されているように 2 つのアイコンを配置したいと考えています (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>
一般的なレイアウトについては、こちらを参照してください。