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 4334318
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T10:30:44+00:00 2026-05-21T10:30:44+00:00

i have a very simple setup for my app in order to test adwhirl

  • 0

i have a very simple setup for my app in order to test adwhirl

import android.app.Activity;
import android.os.Bundle;
import android.view.ViewGroup.LayoutParams;
import android.widget.LinearLayout;
import android.widget.RelativeLayout;
import com.adwhirl.AdWhirlLayout;

public class testads extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.testads);

        LinearLayout layout = (LinearLayout) findViewById(R.id.layout_main);
        AdWhirlLayout adWhirlLayout = new AdWhirlLayout(this, "my_ADWHIRLSDKCODE");
        RelativeLayout.LayoutParams adWhirlLayoutParams =
                new RelativeLayout.LayoutParams(
                LayoutParams.FILL_PARENT,
                LayoutParams.WRAP_CONTENT);
        layout.addView(adWhirlLayout, adWhirlLayoutParams);
        layout.invalidate();
    }
}

and the layout file is as follows

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:id="@+id/layout_main"
  >
    <TextView android:text="TextView" android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
    <AdWhirlLayout android:id="@+id/adwhirl_layout"/>
</LinearLayout>

When i run it, the app crashes… This should be so simple, what am i doing wrong?

edit: i am sorry i did not include the log error before… here it is

04-11 17:21:36.215: ERROR/AndroidRuntime(2084): FATAL EXCEPTION: main
04-11 17:21:36.215: ERROR/AndroidRuntime(2084): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.vicvic.android/com.vicvic.android.testads}: android.view.InflateException: Binary XML file line #9: Error inflating class AdWhirlLayout
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2663)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at android.app.ActivityThread.access$2300(ActivityThread.java:125)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at android.os.Handler.dispatchMessage(Handler.java:99)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at android.os.Looper.loop(Looper.java:123)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at android.app.ActivityThread.main(ActivityThread.java:4627)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at java.lang.reflect.Method.invokeNative(Native Method)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at java.lang.reflect.Method.invoke(Method.java:521)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at dalvik.system.NativeStart.main(Native Method)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084): Caused by: android.view.InflateException: Binary XML file line #9: Error inflating class AdWhirlLayout
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:576)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at android.view.LayoutInflater.rInflate(LayoutInflater.java:618)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at android.view.LayoutInflater.inflate(LayoutInflater.java:407)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at android.view.LayoutInflater.inflate(LayoutInflater.java:320)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at android.view.LayoutInflater.inflate(LayoutInflater.java:276)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:198)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at android.app.Activity.setContentView(Activity.java:1647)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at com.vicvic.android.testads.onCreate(testads.java:18)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2627)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     ... 11 more
04-11 17:21:36.215: ERROR/AndroidRuntime(2084): Caused by: java.lang.ClassNotFoundException: android.view.AdWhirlLayout in loader dalvik.system.PathClassLoader[/data/app/com.vicvic.android-2.apk]
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at dalvik.system.PathClassLoader.findClass(PathClassLoader.java:243)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at java.lang.ClassLoader.loadClass(ClassLoader.java:573)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at java.lang.ClassLoader.loadClass(ClassLoader.java:532)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at android.view.LayoutInflater.createView(LayoutInflater.java:466)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at android.view.LayoutInflater.onCreateView(LayoutInflater.java:544)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at com.android.internal.policy.impl.PhoneLayoutInflater.onCreateView(PhoneLayoutInflater.java:66)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:563)
04-11 17:21:36.215: ERROR/AndroidRuntime(2084):     ... 20 more
04-11 17:21:36.375: WARN/ActivityManager(66):   Force finishing activity com.vicvic.android/.testads
04-11 17:21:36.895: WARN/ActivityManager(66): Activity pause timeout for HistoryRecord{44f65b98 com.vicvic.android/.testads}
04-11 17:21:42.635: DEBUG/dalvikvm(185): GC_EXPLICIT freed 149 objects / 10872 bytes in 86ms
04-11 17:21:47.308: WARN/ActivityManager(66): Activity destroy timeout for HistoryRecord{44f65b98 com.vicvic.android/.testads}
04-11 17:21:47.735: DEBUG/dalvikvm(267): GC_EXPLICIT freed 31 objects / 1400 bytes in 178ms
04-11 17:22:29.135: DEBUG/SntpClient(66): request time failed: java.net.SocketException: Address family not supported by protocol
  • 1 1 Answer
  • 0 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-21T10:30:45+00:00Added an answer on May 21, 2026 at 10:30 am

    Without an error message it’s just guessing.
    Try something like
    <com.adwhirl.AdWhirlLayout> in your XML using the package name of the AdWhirlLayout-Class

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a very simple Setup project that copies three dlls into the GAC.
I have a very simple asp.net mvc3 app that uses jquery::getJSON to call into
I have fully isolated this problem to a very simple play app I think
I have a very simple .htaccess file set up to redirect a 404 to
i have very simple problem. I need to create model, that represent element of
I have very simple select like this: SELECT * FROM table WHERE column1 IN
I have very simple window where I have 2 buttons - one for cancel,
I have a very simple question regarding BSTs. I have seen multiple definitions of
I have some very simple javascript code that looks like this: var newWindow =
I have this very simple code: #include <stdio.h> #include <stdlib.h> int maxArr(int *arr) {

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.