вы можете добавить свой логотип (например, name logo.png) в папку drawable
, а затем добавить imageView в свой макет xml следующим образом:
<ImageView
android:id="@+id/logo"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/logo" <!-- this is the drawable source of your imageView -->
/>