Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3871246
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T21:48:20+00:00 2026-05-19T21:48:20+00:00

I have written an app for the android. I want to make this ad

  • 0

I have written an app for the android. I want to make this ad free, so I have decided to put admob ads in it so that I can still makes some money. I have two problems, in test mode, the ad is very faded and is barely noticable. This is the smaller of my two problems though. I keep hearing about how to test it, but how do I know that when I publish the app to the android market, that actual apps will appear? I am a beginner to mobile ads and admob so if someone could tell me what I should be doing, that would be much appreciate (including setting up the admob account for my app, I already have an account, but there is something I need to do for each specific app, and I’m not sure if I am doing it correctly)
here is the xml code for the layout:

<?xml version="1.0" encoding="utf-8"?>
<!--
 !this is the exclusive write of Rothschild Programming LLC
-->
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_height="fill_parent"
   android:layout_width="fill_parent">

    <LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_height="50dip"
    android:layout_gravity="top"
    android:layout_width="fill_parent"
    android:background="@color/puzzle_foreground">

 <com.admob.android.ads.AdView
    xmlns:myapp="http://schemas.android.com/apk/res/com.rothschild.android.gemagria"
    android:id="@+id/ad3"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    myapp:backgroundColor="@color/puzzle_foreground"
    myapp:primaryTextColor="@color/puzzle_foreground"
    myapp:secondaryTextColor="@color/puzzle_foreground"

    />
    </LinearLayout>

<LinearLayout
   xmlns:android="http://schemas.android.com/apk/res/android"
   android:background="@color/dust_tan"
   android:layout_height="fill_parent"
   android:layout_width="fill_parent"
   android:paddingTop="30dip"
   android:paddingLeft="30dip"
   android:paddingRight="30dip"
   android:orientation="horizontal">
   <ScrollView 
xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
   <LinearLayout
      android:orientation="vertical"
      android:layout_height="wrap_content"
      android:layout_width="fill_parent"
      android:layout_gravity="center" 
      xmlns:app="http://schemas.android.com/apk/res/com.rothschild.android.gemagria">
      <FrameLayout 
      android:layout_height="wrap_content"
      android:layout_width="fill_parent"
      android:layout_gravity="center" 

      >

      <ImageView
        android:background="@drawable/icon"
        android:layout_height="wrap_content"
         android:layout_width="wrap_content"
         android:layout_gravity="center"/>
        </FrameLayout>
      <TextView
         android:text="@string/app_name"
         android:layout_height="wrap_content"
         android:layout_width="wrap_content"
         android:layout_gravity="center"
         android:layout_marginBottom="25dip"
         android:textColor="@color/puzzle_foreground"
         android:textSize="24.5sp" />

      <Button
         android:id="@+id/start_button"
         android:layout_width="fill_parent"
         android:layout_height="50dip"
         android:text="Start" />
      <Button
         android:id="@+id/help_button"
         android:layout_width="fill_parent"
         android:layout_height="50dip"
         android:text="Help" />
      <Button
         android:id="@+id/settings_button"
         android:layout_width="fill_parent"
         android:layout_height="50dip"
         android:text="Settings" />
      <Button
         android:id="@+id/exit_button"
         android:layout_width="fill_parent"
         android:layout_height="50dip"
         android:text="Exit" />


   </LinearLayout>
   </ScrollView>
</LinearLayout>
</FrameLayout>
  • 1 1 Answer
  • 2 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T21:48:21+00:00Added an answer on May 19, 2026 at 9:48 pm

    Go to your admob account and setup a new site/app. This will give you your publisher id for that specific app.

    It sounds like you have done everything except add the id and permissions to the manifest.

    Something like this

    <!-- The application's publisher ID assigned by AdMob -->
    <meta-data android:value="***************" android:name="ADMOB_PUBLISHER_ID" />
    <!-- AdMobActivity definition -->
    <activity android:name="com.admob.android.ads.AdMobActivity"
    android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
    android:configChanges="orientation|keyboard|keyboardHidden" />
    <!-- Track Market installs -->
    <receiver android:name="com.admob.android.ads.analytics.InstallReceiver"
    android:exported="true">
    <intent-filter>
    <action android:name="com.android.vending.INSTALL_REFERRER" />
    </intent-filter>
    </receiver>
    <meta-data android:value="false" android:name="ADMOB_ALLOW_LOCATION_FOR_ADS"/>
    

    And add the permission to your manifest

    <!-- AdMob SDK requires Internet permission -->
    <uses-permission android:name="android.permission.INTERNET" />
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've written an iOS app that I want to port to android. This app
I have written my first android app and have successfully included the AdMob ads
I have written a BlackBerry app that RSA encrypts a message using PKCS1FormatterEngine. This
I have written a small android app that grabs some data and displays it
Let's say I have an android app, and in that app I want to
I have written this simple app to make a call based on handler delay
I have written an app which can talk to server via background service to
I have written an iPhone app that uses the iPhone's relative GPS location. I
I have written a C# app that runs constantly in a loop and several
I have written a small app that puts my bluetooth in discoverable mode for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.