代码之家  ›  专栏  ›  技术社区  ›  Joshua Lee

由于实施Admob ads,活动无法启动

  •  -1
  • Joshua Lee  · 技术社区  · 6 年前

    我一直在尝试制作一个带有广告的消息应用程序,当应用程序在实现AdMob时崩溃。不知道为什么应用程序会崩溃,但我怀疑可能与其他现有代码冲突。下面的代码有什么问题吗?

    Java:

    import com.google.android.gms.ads.AdRequest;
    import com.google.android.gms.ads.AdView;
    
       @Override
       protected void onCreate(Bundle savedInstanceState) {
           super.onCreate(savedInstanceState);
           setContentView(R.layout.activity_main);
        // Sample AdMob app ID: ca-app-pub-5289059028582551~3029249239
           MobileAds.initialize(this, "ca-app-pub-5289059028582551~3029249239");
           AdView adView = (AdView)findViewById(R.id.adView);
           AdRequest adRequest = new AdRequest.Builder().build();
           adView.loadAd(adRequest);
           editMessage = findViewById(R.id.editMessageE);
           mDatabase = FirebaseDatabase.getInstance().getReference().child("Messages");
           mMessageList = findViewById(R.id.messageRec);
           mMessageList.setHasFixedSize(true);
           LinearLayoutManager linearLayoutManager = new LinearLayoutManager(this);
           linearLayoutManager.setStackFromEnd(true);
           mMessageList.setLayoutManager(linearLayoutManager);
           mAuth = FirebaseAuth.getInstance();
           mAuthListener = new FirebaseAuth.AuthStateListener() {
               @Override
               public void onAuthStateChanged(@NonNull FirebaseAuth firebaseAuth) {
                   if (firebaseAuth.getCurrentUser() == null){
                    startActivity(new Intent(MainActivity.this,RegisterActivity.class));
              }
            }
        };
    }
    

    日志类别:

    致命异常:main 流程:comdanishansogning。wixsite。httpshobojuniors。danishansgning,PID:3879 JAVAlang.RuntimeException:无法启动活动组件信息{comdanishansogning.wixsite.httpshobojuniors.danishansging/comdanishansogning.wixsite.httpshobojuniors.danishansging.MainActivity}:java。lang.NullPointerException:尝试调用虚拟方法“void com”。谷歌。安卓gms。ads.AdView。在空对象引用上加载AD(com.google.android.gms.ads.AdRequest)

    清单:

    <meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />
          <activity android:name="com.google.android.gms.ads.AdActivity"
                android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
                android:theme="@android:style/Theme.Translucent" />
    

    Xml:

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="16dp"
    android:paddingLeft="16dp"
    android:paddingStart="16dp"
    android:paddingRight="16dp"
    android:paddingEnd="16dp"
    android:paddingTop="16dp"
    android:id="@+id/activity_register"
    tools:context="comdanishansogning.wixsite.httpshobojuniors.danishansgning.RegisterActivity"
    >
    
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Sign In:"
        />
    
    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content" 
        android:id="@+id/editEmail"
        android:hint="Enter email"
        android:inputType="textEmailAddress"
        />
    
    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content" 
        android:id="@+id/editUsername"
        android:hint="Enter username"
        />
    
    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/editPassword"
        android:hint="Enter password"
        android:inputType="textPassword"
        />
    
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/signupButtonClicked"
        android:text="Sign up"
        android:onClick="signupButtonClicked"
        />
    
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Already have an Account? Login"
        android:onClick="loginButtonClicked"
        />
    
    <Space
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        />
    
    <com.google.android.gms.ads.AdView
        xmlns:ads="http://schemas.android.com/apk/res-auto"
        android:id="@+id/adView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        ads:adSize="SMART_BANNER"
        ads:adUnitId="ca-app-pub-5289059028582551/8546061599"
        >
    </com.google.android.gms.ads.AdView>
    
    </LinearLayout>
    
    2 回复  |  直到 6 年前
        1
  •  1
  •   Michael Dodd    6 年前

    正如注释中所述,您正在膨胀错误的XML布局文件。在代码中:

    @Override
    protected void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);
       setContentView(R.layout.activity_main);
       ...
    }
    

    您正在膨胀文件 res/layout/activity_main.xml .充气 res/layout/activity_register.xml 相反,改变 setContentView 对此:

    setContentView(R.layout.activity_register);
    

    对于第二期,您没有 RecyclerView 在布局中定义。添加一个,例如。

    <android.support.v7.widget.RecyclerView
        android:id="@+id/messageRec"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
    
        2
  •  0
  •   Hitesh Manwani    6 年前
    Please Check weather you have define activity in your manifest file or not.
    <application>
    <activity android:name=".MainActivity" android:screenOrientation="portrait">
    <intent-filter> <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" /></intent-filter></activity></application>
    

    否则请检查:-> https://developers.google.com/admob/android/quick-start