主頁 > 移動端開發 > Fragment的四種跳轉方式

Fragment的四種跳轉方式

2022-09-28 09:10:37 移動端開發

本文主要記錄了關于fragment的四種跳轉方式:  

1、從同一個Activiy的一個Fragment跳轉到另外一個Fragment
2、從一個Activity的Fragment跳轉到另外一個Activity
3、從一個Activity跳轉到另外一個Activity的Fragment上
4、從一個Activity的Fragment跳轉到另外一個Activity的Fragment上

 

寫這篇文章只是一個簡單的記錄,當初我學這里的時候看別人的文章總是覺得云里霧里的,后來自己也覺得差不多可以了,于是寫下這篇博客,也是記錄自己的學習程序,

首先新建一個專案,然后新建兩個活動MainActivity、OtherActivity,
在MainActivity的布局檔案中寫一個子布局:

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:orientation="vertical"
 4     android:layout_width="match_parent"
 5     android:layout_height="match_parent">
 6  
 7  
 8     <FrameLayout
 9         android:id="@+id/fragment_container"
10         android:layout_width="match_parent"
11         android:layout_height="0dp"
12         android:layout_weight="1"/>
13  
14  
15 </LinearLayout>

新建一個my_fragment.xml布局與MyFragment類

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:orientation="vertical"
 4     android:layout_width="match_parent"
 5     android:layout_height="match_parent">
 6  
 7     <TextView
 8         android:layout_width="match_parent"
 9         android:layout_height="wrap_content"
10         android:text="MyFragment"
11         android:textSize="40sp"
12         android:gravity="center_horizontal"/>
13  
14     <Button
15         android:id="@+id/my_button"
16         android:layout_width="wrap_content"
17         android:layout_height="wrap_content"
18         android:textAllCaps="false"
19         android:text="To YourFragment"/>
20  
21     <Button
22         android:id="@+id/my_other"
23         android:layout_width="wrap_content"
24         android:layout_height="wrap_content"
25         android:textAllCaps="false"
26         android:text="To OtherActivity"/>
27  
28 </LinearLayout>

MyFragment類就暫時省略了,后面會貼出所有代碼,
在MainActivity中先添加進一個Fragment進行最開始的展示(壓堆疊式添加)

 1 public class MainActivity extends AppCompatActivity {
 2  
 3     @Override
 4     protected void onCreate(Bundle savedInstanceState) {
 5         super.onCreate(savedInstanceState);
 6         setContentView(R.layout.activity_main);
 7         getSupportFragmentManager()
 8                 .beginTransaction()
 9                 .replace(R.id.fragment_container,new MyFragment())
10                 .addToBackStack(null)
11                 .commit();
12  
13     }
14 }

從同一個Activiy的一個Fragment跳轉到另外一個Fragment

這個跳轉與上面初始顯示Fragment類似,
新建your_fragment.xml布局與YourFragment類,

 1 public class YourFragment extends Fragment {
 2     public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
 3         View contentView;
 4         contentView = inflater.inflate(R.layout.your_fragment, container, false);
 5         return contentView;
 6     }
 7  
 8     @Override
 9     public void onActivityCreated(@Nullable Bundle savedInstanceState) {
10         super.onActivityCreated(savedInstanceState);
11         Button myReturn = (Button) getActivity().findViewById(R.id.my_return);
12         myReturn.setOnClickListener(new View.OnClickListener() {
13             //回傳到上一個Fragment(同一個Activity中)
14             @Override
15             public void onClick(View v) {
16                 getActivity().getSupportFragmentManager().popBackStack();
17             }
18         });
19     }
20 }

your_fragment.xml就暫時先省略了,最后會貼出全部代碼,

跳轉部分代碼如下,通過點擊按鈕跳轉:

 1 myButton.setOnClickListener(new View.OnClickListener() {
 2             @Override
 3             public void onClick(View v) {
 4                 /* 一、從同一個Activity的一個Fragment跳到另外一個Fragment*/
 5                 //壓堆疊式跳轉
 6                 getActivity().getSupportFragmentManager()
 7                         .beginTransaction()
 8                         .replace(R.id.fragment_container, new YourFragment(), null)
 9                         .addToBackStack(null)
10                         .commit();
11  
12             }
13         });

從一個Activity的Fragment跳轉到另外一個Activity

此跳轉與Activity之間的跳轉十分相似,只要參考背景關系的時候,改成getActivity()即可,

跳轉關鍵代碼:

 1 myOther.setOnClickListener(new View.OnClickListener() {
 2             /*
 3              二、從一個Activity的Fragment跳轉到另外一個Activity(等同于Activity之間的跳轉(背景關系是getActivity))
 4              */
 5             @Override
 6             public void onClick(View v) {
 7                 Intent intent = new Intent(getActivity(),OtherActivity.class);
 8                 startActivity(intent);
 9             }
10         });

從一個Activity跳轉到另外一個Activity的Fragment上

我們要從OtherActivity跳轉到MainActivity的YourFragment上去:
首先,我們在OtherActivity中的跳轉事件中給MainActivity傳遞一個引數,命名為id:

 1 Intent intent = new Intent(OtherActivity.this, MainActivity.class); 2 intent.putExtra("id",1); 3 startActivity(intent); 

然后,我們在MainActivity里接收id值,對值進行判斷,如果正確進行跳轉操作:

1 int id = getIntent().getIntExtra("id", 0);
2 if (id == 1) {      
3      getSupportFragmentManager()
4        .beginTransaction()
5        .replace(R.id.fragment_container,new YourFragment())
6        .addToBackStack(null)
7        .commit(); 
8 }

從一個Activity的Fragment跳轉到另外一個Activity的Fragment上

新建other_fragment.xml布局作為OtherActivity的一個Fragment,

這種跳轉與第三種跳轉極為類似,我們只需要將上面的

 1 Intent intent = new Intent(OtherActivity.this, MainActivity.class); 

Intent intent = new Intent(OtherActivity.this, MainActivity.class);

關鍵代碼如下:

 1 public void onActivityCreated(@Nullable Bundle savedInstanceState) {
 2         super.onActivityCreated(savedInstanceState);
 3         Button ToButton = (Button) getActivity().findViewById(R.id.to_button);
 4         ToButton.setOnClickListener(new View.OnClickListener() {
 5             
 6             @Override
 7             public void onClick(View v) {
 8                 Intent intent = new Intent(getActivity(), MainActivity.class);
 9                 intent.putExtra("id",1);
10                 startActivity(intent);
11             }
12         });
13     }

所有代碼檔案

最后附上所有的代碼檔案,  
MainActivity:

 1 package com.example.fragment_activity_skiptest;
 2  
 3 import android.content.Intent;
 4 import android.support.v7.app.AppCompatActivity;
 5 import android.os.Bundle;
 6 import android.view.View;
 7  
 8 public class MainActivity extends AppCompatActivity {
 9  
10     @Override
11     protected void onCreate(Bundle savedInstanceState) {
12         super.onCreate(savedInstanceState);
13         setContentView(R.layout.activity_main);
14         getSupportFragmentManager()
15                 .beginTransaction()
16                 .replace(R.id.fragment_container,new MyFragment())
17                 .addToBackStack(null)
18                 .commit();
19         int id = getIntent().getIntExtra("id", 0);
20         if (id == 1) {
21             getSupportFragmentManager()
22                     .beginTransaction()
23                     .replace(R.id.fragment_container,new YourFragment())
24                     .addToBackStack(null)
25                     .commit();
26         }
27  
28     }
29 }

MyFragment:

 1 package com.example.fragment_activity_skiptest;
 2  
 3 import android.content.Intent;
 4 import android.os.Bundle;
 5 import android.support.annotation.Nullable;
 6 import android.support.v4.app.Fragment;
 7 import android.view.LayoutInflater;
 8 import android.view.View;
 9 import android.view.ViewGroup;
10 import android.widget.Button;
11  
12  
13 public class MyFragment extends Fragment {
14  
15     public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
16         View contentView;
17             contentView = inflater.inflate(R.layout.my_fragment, container, false);
18  
19         return contentView;
20     }
21  
22     @Override
23     public void onActivityCreated(@Nullable Bundle savedInstanceState) {
24         super.onActivityCreated(savedInstanceState);
25         Button myButton = (Button) getActivity().findViewById(R.id.my_button);
26  
27         Button myOther = (Button) getActivity().findViewById(R.id.my_other);
28         myButton.setOnClickListener(new View.OnClickListener() {
29             @Override
30             public void onClick(View v) {
31                 /** 一、從同一個Activity的一個Fragment跳到另外一個Fragment*/
32                 //壓堆疊式跳轉
33                 getActivity().getSupportFragmentManager()
34                         .beginTransaction()
35                         .replace(R.id.fragment_container, new YourFragment(), null)
36                         .addToBackStack(null)
37                         .commit();
38  
39             }
40         });
41         myOther.setOnClickListener(new View.OnClickListener() {
42             /**
43              二、從一個Activity的Fragment跳轉到另外一個Activity(等同于Activity之間的跳轉(背景關系是getActivity))
44              */
45             @Override
46             public void onClick(View v) {
47                 Intent intent = new Intent(getActivity(),OtherActivity.class);
48                 startActivity(intent);
49             }
50         });
51     }
52 }

OtherActivity:

 1 package com.example.fragment_activity_skiptest;
 2  
 3 import android.content.Intent;
 4 import android.support.v7.app.AppCompatActivity;
 5 import android.os.Bundle;
 6 import android.view.View;
 7 import android.widget.Button;
 8  
 9 public class OtherActivity extends AppCompatActivity {
10  
11     @Override
12     protected void onCreate(Bundle savedInstanceState) {
13         super.onCreate(savedInstanceState);
14         setContentView(R.layout.activity_other);
15         Button button = (Button)findViewById(R.id.to_MainActivity_YourFragment);
16         Button button_back = (Button)findViewById(R.id.back);
17         Button button_fm = (Button)findViewById(R.id.to_OtherFragment);
18         button.setOnClickListener(new View.OnClickListener() {
19             /*從一個Activity跳轉到另外一個Activity的Fragment上
20             例如我們要從OtherActivity跳轉到MainActivity的YourFragment上去:
21             首先,我們在OtherActivity中的跳轉事件中給MainActivity傳遞一個名為id的引數:
22             然后,我們在MainActivity里接收id值,對值進行判斷,如果正確進行跳轉操作:
23             */
24             @Override
25             public void onClick(View v) {
26                 Intent intent = new Intent(OtherActivity.this, MainActivity.class);
27                 intent.putExtra("id",1);
28                 startActivity(intent);
29  
30             }
31         });
32         button_back.setOnClickListener(new View.OnClickListener() {
33             @Override
34             public void onClick(View v) {
35                 finish();
36             }
37         });
38         button_fm.setOnClickListener(new View.OnClickListener() {
39             @Override
40             public void onClick(View v) {
41                 getSupportFragmentManager()
42                         .beginTransaction()
43                         .replace(R.id.frame_container, new OtherFragment(), null)
44                         .addToBackStack(null)
45                         .commit();
46             }
47         });
48     }
49 }

OtherFragment:

package com.example.fragment_activity_skiptest;
 
import android.content.Intent;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
 
 
public class OtherFragment extends Fragment {
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        View contentView;
        contentView = inflater.inflate(R.layout.other_fragment, container, false);
        return contentView;
    }
 
    @Override
    public void onActivityCreated(@Nullable Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
        Button ToButton = (Button) getActivity().findViewById(R.id.to_button);
        ToButton.setOnClickListener(new View.OnClickListener() {
            /*4、從一個Activity的Fragment跳轉到另外一個Activity的Fragment上
            這種跳轉與第三種跳轉極為類似,我們只需要將
            Intent intent = new Intent(OtherActivity.this, MainActivity.class);
            書寫在對應的Fragment中,將OtherActivity.this更改為getActivity(),其他不用改變,幾個完成跳轉.
            */
            @Override
            public void onClick(View v) {
                Intent intent = new Intent(getActivity(), MainActivity.class);
                intent.putExtra("id",1);
                startActivity(intent);
            }
        });
    }
}

YourFragment:

package com.example.fragment_activity_skiptest;
 
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
 
 
public class YourFragment extends Fragment {
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        View contentView;
        contentView = inflater.inflate(R.layout.your_fragment, container, false);
        return contentView;
    }
 
    @Override
    public void onActivityCreated(@Nullable Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
        Button myReturn = (Button) getActivity().findViewById(R.id.my_return);
        myReturn.setOnClickListener(new View.OnClickListener() {
            //回傳到上一個Fragment(同一個Activity中)
            @Override
            public void onClick(View v) {
                getActivity().getSupportFragmentManager().popBackStack();
            }
        });
    }
}

activity_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
 
 
    <FrameLayout
        android:id="@+id/fragment_container"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"/>
 
 
</LinearLayout>

activity_other.xml:

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:orientation="vertical"
 4     android:id="@+id/activity_other"
 5     android:layout_width="match_parent"
 6     android:layout_height="match_parent"
 7     android:background="#d0ff05"
 8     >
 9  
10     <FrameLayout
11         android:id="@+id/frame_container"
12         android:layout_width="match_parent"
13         android:layout_height="0dp"
14         android:layout_weight="1">
15         <LinearLayout
16             android:orientation="vertical"
17             android:layout_width="match_parent"
18             android:layout_height="match_parent">
19  
20             <TextView
21                 android:layout_width="match_parent"
22                 android:layout_height="wrap_content"
23                 android:text="OtherActivity"
24                 android:textSize="50sp"
25                 android:gravity="center_horizontal"/>
26  
27             <Button
28                 android:id="@+id/to_MainActivity_YourFragment"
29                 android:layout_width="wrap_content"
30                 android:layout_height="wrap_content"
31                 android:text="To MainActivity YourFragment"
32                 android:textAllCaps="false"/>
33  
34             <Button
35                 android:id="@+id/to_OtherFragment"
36                 android:layout_width="wrap_content"
37                 android:layout_height="wrap_content"
38                 android:text="To OtherFragment"
39                 android:textAllCaps="false"/>
40  
41             <Button
42                 android:id="@+id/back"
43                 android:layout_width="wrap_content"
44                 android:layout_height="wrap_content"
45                 android:text="back"/>
46  
47         </LinearLayout>
48     </FrameLayout>
49  
50  
51  
52 </LinearLayout>

my_fragment.xml:

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:orientation="vertical"
 4     android:layout_width="match_parent"
 5     android:layout_height="match_parent">
 6  
 7     <TextView
 8         android:layout_width="match_parent"
 9         android:layout_height="wrap_content"
10         android:text="MyFragment"
11         android:textSize="40sp"
12         android:gravity="center_horizontal"/>
13  
14     <Button
15         android:id="@+id/my_button"
16         android:layout_width="wrap_content"
17         android:layout_height="wrap_content"
18         android:textAllCaps="false"
19         android:text="To YourFragment"/>
20  
21     <Button
22         android:id="@+id/my_other"
23         android:layout_width="wrap_content"
24         android:layout_height="wrap_content"
25         android:textAllCaps="false"
26         android:text="To OtherActivity"/>
27  
28 </LinearLayout>

other_fragment.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffffff">
 
 
 
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="OtherFragment"
        android:textSize="40sp"
        android:gravity="center_horizontal"/>
 
    <Button
        android:id="@+id/to_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAllCaps="false"
        android:text="To MainActivity YourFragment"/>
 
</LinearLayout>

your_fragment.xml:

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:orientation="vertical"
 4     android:layout_width="match_parent"
 5     android:layout_height="match_parent"
 6     android:background="#0fa345">
 7  
 8     <TextView
 9         android:layout_width="match_parent"
10         android:layout_height="wrap_content"
11         android:gravity="center_horizontal"
12         android:textSize="40sp"
13         android:text="YourFragment"/>
14  
15     <Button
16         android:id="@+id/my_return"
17         android:layout_width="wrap_content"
18         android:layout_height="wrap_content"
19         android:text="RETURN"
20         />
21  
22 </LinearLayout>

參考:Android Fragment的四種跳轉

我的CSDN:Fragment的四種跳轉方式_SY_XLR的博客-CSDN博客_fragment跳轉

轉載請註明出處,本文鏈接:https://www.uj5u.com/yidong/509731.html

標籤:Android

上一篇:Git 便捷操作

下一篇:Xcode Run Script 腳本

標籤雲
其他(157675) Python(38076) JavaScript(25376) Java(17977) C(15215) 區塊鏈(8255) C#(7972) AI(7469) 爪哇(7425) MySQL(7132) html(6777) 基礎類(6313) sql(6102) 熊猫(6058) PHP(5869) 数组(5741) R(5409) Linux(5327) 反应(5209) 腳本語言(PerlPython)(5129) 非技術區(4971) Android(4554) 数据框(4311) css(4259) 节点.js(4032) C語言(3288) json(3245) 列表(3129) 扑(3119) C++語言(3117) 安卓(2998) 打字稿(2995) VBA(2789) Java相關(2746) 疑難問題(2699) 细绳(2522) 單片機工控(2479) iOS(2429) ASP.NET(2402) MongoDB(2323) 麻木的(2285) 正则表达式(2254) 字典(2211) 循环(2198) 迅速(2185) 擅长(2169) 镖(2155) 功能(1967) .NET技术(1958) Web開發(1951) python-3.x(1918) HtmlCss(1915) 弹簧靴(1913) C++(1909) xml(1889) PostgreSQL(1872) .NETCore(1853) 谷歌表格(1846) Unity3D(1843) for循环(1842)

熱門瀏覽
  • 【從零開始擼一個App】Dagger2

    Dagger2是一個IOC框架,一般用于Android平臺,第一次接觸的朋友,一定會被搞得暈頭轉向。它延續了Java平臺Spring框架代碼碎片化,注解滿天飛的傳統。嘗試將各處代碼片段串聯起來,理清思緒,真不是件容易的事。更不用說還有各版本細微的差別。 與Spring不同的是,Spring是通過反射 ......

    uj5u.com 2020-09-10 06:57:59 more
  • Flutter Weekly Issue 66

    新聞 Flutter 季度調研結果分享 教程 Flutter+FaaS一體化任務編排的思考與設計 詳解Dart中如何通過注解生成代碼 GitHub 用對了嗎?Flutter 團隊分享如何管理大型開源專案 插件 flutter-bubble-tab-indicator A Flutter librar ......

    uj5u.com 2020-09-10 06:58:52 more
  • Proguard 常用規則

    介紹 Proguard 入口,如何查看輸出,如何使用 keep 設定入口以及使用實體,如何配置壓縮,混淆,校驗等規則。

    ......

    uj5u.com 2020-09-10 06:59:00 more
  • Android 開發技術周報 Issue#292

    新聞 Android即將獲得類AirDrop功能:可向附近設備快速分享檔案 谷歌為安卓檔案管理應用引入可安全隱藏資料的Safe Folder功能 Android TV新主界面將顯示電影、電視節目和應用推薦內容 泄露的Android檔案暗示了傳說中的谷歌Pixel 5a與折疊屏新機 谷歌發布Andro ......

    uj5u.com 2020-09-10 07:00:37 more
  • AutoFitTextureView Error inflating class

    報錯: Binary XML file line #0: Binary XML file line #0: Error inflating class xxx.AutoFitTextureView 解決: <com.example.testy2.AutoFitTextureView android: ......

    uj5u.com 2020-09-10 07:00:41 more
  • 根據Uri,Cursor沒有獲取到對應的屬性

    Android: 背景:呼叫攝像頭,拍攝視頻,指定保存的地址,但是回傳的Cursor檔案,只有名稱和大小的屬性,沒有其他諸如時長,連ID屬性都沒有 使用 cursor.getInt(cursor.getColumnIndexOrThrow(MediaStore.Video.Media.DURATIO ......

    uj5u.com 2020-09-10 07:00:44 more
  • Android連載29-持久化技術

    一、持久化技術 我們平時所使用的APP產生的資料,在記憶體中都是瞬時的,會隨著斷電、關機等丟失資料,因此android系統采用了持久化技術,用于存盤這些“瞬時”資料 持久化技術包括:檔案存盤、SharedPreference存盤以及資料庫存盤,還有更復雜的SD卡記憶體儲。 二、檔案存盤 最基本存盤方式, ......

    uj5u.com 2020-09-10 07:00:47 more
  • Android Camera2Video整合到自己專案里

    背景: Android專案里呼叫攝像頭拍攝視頻,原本使用的 MediaStore.ACTION_VIDEO_CAPTURE, 后來因專案需要,改成了camera2 1.Camera2Video 官方demo有點問題,下載后,不能直接整合到專案 問題1.多次拍攝視頻崩潰 問題2.雙擊record按鈕, ......

    uj5u.com 2020-09-10 07:00:50 more
  • Android 開發技術周報 Issue#293

    新聞 谷歌為Android TV開發者提供多種新功能 Android 11將自動填表功能整合到鍵盤輸入建議中 谷歌宣布Android Auto即將支持更多的導航和數字停車應用 谷歌Pixel 5只有XL版本 搭載驍龍765G且將比Pixel 4更便宜 [圖]Wear OS將迎來重磅更新:應用啟動時間 ......

    uj5u.com 2020-09-10 07:01:38 more
  • 海豚星空掃碼投屏 Android 接收端 SDK 集成 六步驟

    掃碼投屏,開放網路,獨占設備,不需要額外下載軟體,微信掃碼,發現設備。支持標準DLNA協議,支持倍速播放。視頻,音頻,圖片投屏。好點意思。還支持自定義基于 DLNA 擴展的操作動作。好像要收費,沒體驗。 這里簡單記錄一下集成程序。 一 跟目錄的build.gradle添加私有mevan倉庫 mave ......

    uj5u.com 2020-09-10 07:01:43 more
最新发布
  • 歡迎頁輪播影片

    如圖,引導開始,球從上落下,同時淡入文字,然后文字開始輪播,最后一頁時停止,點擊進入首頁。 在來看看效果圖。 重力球先不講,主要歡迎輪播簡單實作 首先新建一個類 TextTranslationXGuideView,用于影片展示 文本是類似的,最后會有個圖片箭頭影片,布局很簡單,就是一個 TextVi ......

    uj5u.com 2023-04-20 08:40:31 more
  • 【FAQ】關于華為推送服務因營銷訊息頻次管控導致服務通訊類訊息

    一. 問題描述 使用華為推送服務下發IM訊息時,下發訊息請求成功且code碼為80000000,但是手機總是收不到訊息; 在華為推送自助分析(Beta)平臺查看發現,訊息發送觸發了頻控。 二. 問題原因及背景 2023年1月05日起,華為推送服務對咨詢營銷類訊息做了單個設備每日推送數量上限管理,具體 ......

    uj5u.com 2023-04-20 08:40:11 more
  • 歡迎頁輪播影片

    如圖,引導開始,球從上落下,同時淡入文字,然后文字開始輪播,最后一頁時停止,點擊進入首頁。 在來看看效果圖。 重力球先不講,主要歡迎輪播簡單實作 首先新建一個類 TextTranslationXGuideView,用于影片展示 文本是類似的,最后會有個圖片箭頭影片,布局很簡單,就是一個 TextVi ......

    uj5u.com 2023-04-20 08:39:36 more
  • 【FAQ】關于華為推送服務因營銷訊息頻次管控導致服務通訊類訊息

    一. 問題描述 使用華為推送服務下發IM訊息時,下發訊息請求成功且code碼為80000000,但是手機總是收不到訊息; 在華為推送自助分析(Beta)平臺查看發現,訊息發送觸發了頻控。 二. 問題原因及背景 2023年1月05日起,華為推送服務對咨詢營銷類訊息做了單個設備每日推送數量上限管理,具體 ......

    uj5u.com 2023-04-20 08:39:13 more
  • iOS從UI記憶體地址到讀取成員變數(oc/swift)

    開發除錯時,我們發現bug時常首先是從UI顯示發現例外,下一步才會去定位UI相關連的資料的。XCode有給我們提供一系列debug工具,但是很多人可能還沒有形成一套穩定的除錯流程,因此本文嘗試解決這個問題,順便提出一個暴論:UI顯示例外問題只需要兩個步驟就能完成定位作業的80%: 定位例外 UI 組 ......

    uj5u.com 2023-04-19 09:16:23 more
  • FIDE重磅更新!性能飛躍!體驗有禮!

    FIDE 開發者工具重構升級啦!實作500%性能提升,誠邀體驗! 一直以來不少開發者朋友在社區反饋,在使用 FIDE 工具的程序中,時常會遇到諸如加載不及時、代碼預覽/渲染性能不如意的情況,十分影響開發體驗。 作為技術團隊,我們深知一件趁手的開發工具對開發者的重要性,因此,在2023年開年,FinC ......

    uj5u.com 2023-04-19 09:16:15 more
  • 游戲內嵌社區服務開放,助力開發者提升玩家互動與留存

    華為 HMS Core 游戲內嵌社區服務提供快速訪問華為游戲中心論壇能力,支持玩家直接在游戲內瀏覽帖子和交流互動,助力開發者擴展內容生產和觸達的場景。 一、為什么要游戲內嵌社區? 二、游戲內嵌社區的典型使用場景 1、游戲內打開論壇 您可以在游戲內繪制論壇入口,為玩家提供沉浸式發帖、瀏覽、點贊、回帖、 ......

    uj5u.com 2023-04-19 09:15:46 more
  • iOS從UI記憶體地址到讀取成員變數(oc/swift)

    開發除錯時,我們發現bug時常首先是從UI顯示發現例外,下一步才會去定位UI相關連的資料的。XCode有給我們提供一系列debug工具,但是很多人可能還沒有形成一套穩定的除錯流程,因此本文嘗試解決這個問題,順便提出一個暴論:UI顯示例外問題只需要兩個步驟就能完成定位作業的80%: 定位例外 UI 組 ......

    uj5u.com 2023-04-19 09:14:53 more
  • FIDE重磅更新!性能飛躍!體驗有禮!

    FIDE 開發者工具重構升級啦!實作500%性能提升,誠邀體驗! 一直以來不少開發者朋友在社區反饋,在使用 FIDE 工具的程序中,時常會遇到諸如加載不及時、代碼預覽/渲染性能不如意的情況,十分影響開發體驗。 作為技術團隊,我們深知一件趁手的開發工具對開發者的重要性,因此,在2023年開年,FinC ......

    uj5u.com 2023-04-19 09:14:08 more
  • 游戲內嵌社區服務開放,助力開發者提升玩家互動與留存

    華為 HMS Core 游戲內嵌社區服務提供快速訪問華為游戲中心論壇能力,支持玩家直接在游戲內瀏覽帖子和交流互動,助力開發者擴展內容生產和觸達的場景。 一、為什么要游戲內嵌社區? 二、游戲內嵌社區的典型使用場景 1、游戲內打開論壇 您可以在游戲內繪制論壇入口,為玩家提供沉浸式發帖、瀏覽、點贊、回帖、 ......

    uj5u.com 2023-04-19 09:08:34 more