直播app原始碼,使用者首次登入時彈出左右滑動導航頁
直播app原始碼,使用者首次登入時彈出左右滑動導航頁
第一步:MainActivity中新增一個跳轉導航頁的按鈕,佈局檔案activity_main.xml:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android=" xmlns:app=" xmlns:tools=" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal" android:gravity="center" tools:context=".MainActivity"> <Button android:id="@+id/jump_guide_activity" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="新手引導頁" /> </LinearLayout> MainActivity.java程式碼: package com.xw.guidepagedemo; import androidx.appcompat.app.AppCompatActivity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.Button; public class MainActivity extends AppCompatActivity implements View.OnClickListener { private Button mJumpGuidePage; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); initview(); initListener(); } private void initview() { //跳轉導航頁的按鈕 mJumpGuidePage = findViewById(R.id.jump_guide_activity); } private void initListener() { //跳轉導航頁的按鈕的點選事件 mJumpGuidePage.setOnClickListener(this); } @Override public void onClick(View v) { Intent intent = new Intent(); intent.setClass(this,GuidePageActivity.class); startActivity(intent); } }
第二步:建立導航頁的Activity:GuidePageActivity.class和佈局檔案activity_page_guide.xml:
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android=" xmlns:app=" xmlns:tools=" android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center" tools:context=".GuidePageActivity"> <androidx.viewpager.widget.ViewPager android:id="@+id/guide_viewpager" android:layout_width="match_parent" android:layout_height="match_parent" /> <RelativeLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_centerHorizontal="true" android:layout_marginBottom="50dp" > <!-- 用於動態新增shape圓形灰色小圓點的指示器的佈局 --> <LinearLayout android:id="@+id/indicator_container" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal"> </LinearLayout> <!-- 用於遮蓋在灰色小圓點上面的紅色小圓點 --> <ImageView android:id="@+id/red_dot" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/shape_circle_selected" /> </RelativeLayout> </RelativeLayout>
上面的佈局檔案中,通過相對佈局的進行元件的佈局,在ViewPager元件上新增一個相對佈局的指示器容器,指示器容器中包含一個用於動態新增shape圓形灰色小圓點的線性佈局和一個ImageView元件。
以上就是直播app原始碼,使用者首次登入時彈出左右滑動導航頁, 更多內容歡迎關注之後的文章
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2889405/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 成品直播原始碼,頂部導航欄部分支援左右滑動原始碼
- app直播原始碼,彈出層 加遮罩層 頁面禁止滑動APP原始碼遮罩
- 直播app開發,滑動式的頂部導航欄(左右橫向滑動)APP
- 直播系統原始碼,啟動APP時判斷登入狀態,引導頁、登入頁、首頁的跳轉方式原始碼APP
- 直播系統原始碼,ViewPager載入大圖 左右滑動原始碼Viewpager
- 直播小程式原始碼,小程式頁面左右滑動如何解決原始碼
- 直播原始碼網站,新使用者登入時的註冊頁面和登入頁面原始碼網站
- 直播app原始碼,登入時自動輸入密碼/自動記住密碼APP原始碼密碼
- app直播原始碼,收到訊息時出現彈窗APP原始碼
- 直播app系統原始碼,底部彈框顯示,底部導航隱藏APP原始碼
- app直播原始碼,軟體登入時的背景圖更改APP原始碼
- 直播系統app原始碼,簡潔好看的登入頁面APP原始碼
- 直播平臺原始碼,純JS實現左右滑動輪播圖原始碼JS
- app直播原始碼,登入時輸入驗證碼、簡訊驗證身份APP原始碼
- 直播app原始碼,標題欄隨頁面滑動之title移動定位效果APP原始碼
- 視訊直播原始碼,提醒類彈窗,到時間後自動彈出原始碼
- 直播網站原始碼,安卓防止輸入框自動彈出網站原始碼安卓
- 影片直播app原始碼,去掉導航條和tabbar線條APP原始碼tabBar
- 直播app開發,判斷使用者是否是首次登入平臺APP
- app直播原始碼,平臺登入頁面實現和修改密碼頁面實現APP原始碼密碼
- 直播商城原始碼,實現左右聯動商品分類頁面原始碼
- 視訊直播原始碼,新增內容滑動條,停止滑動時隱藏原始碼
- 直播app原始碼,Flutter 彈窗元件APP原始碼Flutter元件
- 直播app原始碼,全屏並且去掉底部虛擬導航欄APP原始碼
- 直播系統app原始碼,Android studio 實現app登入註冊頁面APP原始碼Android
- 直播軟體app開發,左右自動滑動的輪播圖廣告APP
- 直播app系統原始碼,使用者登入後選擇記住密碼,下次自動填充密碼APP原始碼密碼
- 直播app原始碼,Java的輸入輸出APP原始碼Java
- 直播系統app原始碼,自定義中間向兩邊滑動的滑動條APP原始碼
- 類似抖音直播間滑動載入頁
- 直播系統app原始碼,垂直,水平無限迴圈滑動APP原始碼
- 影片直播原始碼,AndroidStudio登入頁面的切換原始碼Android
- jQuery滑動導航選單jQuery
- 一對一原始碼,滑塊驗證,滑塊左右滑動顯示的位置原始碼
- 直播小程式原始碼,配置tabbar底部導航欄原始碼tabBar
- 直播平臺原始碼,css移動端設定底部導航欄原始碼CSS
- 帶貨直播原始碼,確定ViewPager滑塊滑動方向原始碼Viewpager
- 直播視訊app原始碼,底部彈出的列表對話方塊APP原始碼