直播帶貨原始碼,Android Studio實現電商引導頁

zhibo系統開發發表於2022-12-22

直播帶貨原始碼,Android Studio實現電商引導頁

開啟“activity_splash.xml”檔案,完成引導頁介面的佈局設計

<RelativeLayout xmlns:android="
    xmlns:tools="
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/splash_bg"
    tools:context=".activity.SplashActivity">
 
    <ImageView
        android:id="@+id/splash_logo"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="120dp"
        android:background="@drawable/splash_logo"/>
 
    <RelativeLayout
        android:id="@+id/rl_splash_loading_bg"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/splash_logo"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="50dp"
        android:background="@drawable/splash_loading_bg">
 
        <ImageView
            android:id="@+id/iv_splash_loading_item"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentStart="true"
            android:src="@drawable/splash_loading_item"/>
    </RelativeLayout>
</RelativeLayout>

以上就是直播帶貨原始碼,Android Studio實現電商引導頁, 更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2929032/,如需轉載,請註明出處,否則將追究法律責任。

相關文章