2010-12-14 9 views
0

私たちのアプリで初めてAdwhirlを使用していますが、喜びはありません.. Adwhirlはこのデモコードを提供しましたが、選択された行に「java.lang.ClassCastException:android.widget.LinearLayout」というエラーメッセージが表示されます。AndroidをレンダリングしないAdWhirl

AdWhirlManager.setConfigExpireTimeout(1000 * 60 * 5); 

     AdWhirlTargeting.setAge(23); 
     AdWhirlTargeting.setGender(AdWhirlTargeting.Gender.MALE); 
     AdWhirlTargeting.setKeywords("online games gaming"); 
     AdWhirlTargeting.setPostalCode("94123"); 
     AdWhirlTargeting.setTestMode(false); 

     ***AdWhirlLayout adWhirlLayout = (AdWhirlLayout) findViewById(R.id.layout_ad);*** 

     TextView textView = new TextView(this); 
     RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(
       LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); 
     int diWidth = 320; 
     int diHeight = 52; 
     int density = (int) getResources().getDisplayMetrics().density; 

     adWhirlLayout.setAdWhirlInterface(this); 
     adWhirlLayout.setMaxWidth((int) (diWidth * density)); 
     adWhirlLayout.setMaxHeight((int) (diHeight * density)); 

     layoutParams.addRule(RelativeLayout.CENTER_HORIZONTAL); 
     textView.setText("Below AdWhirlLayout"); 

     LinearLayout layout = (LinearLayout) findViewById(R.id.test_layout); 

     layout.setGravity(Gravity.CENTER_HORIZONTAL); 
     layout.addView(adWhirlLayout, layoutParams); 
     layout.addView(textView, layoutParams); 
     layout.invalidate(); 

ここXML

<LinearLayout android:orientation="vertical" 
    android:layout_width="fill_parent" android:layout_height="fill_parent" 
    android:gravity="bottom" android:id="@+id/layout_ad" /> 

おかげ

答えて

0

変更レイアウトXMLで

LinearLayout adWhirlLayout = (LinearLayout) findViewById(R.id.layout_ad); 
+0

Saurabh、その私がAdWhilrLayoutが何であるかを知らない –

+0

...動作していないが、例外はあります – ingsaurabh

0

AdWhirlLayout adWhirlLayout = (AdWhirlLayout) findViewById(R.id.layout_ad);// change this 

に、このラインは、adwhirlレイアウトはなく、AdWhirlLayoutとして、LinearLayoutとして定義すべきではありません。

は、レイアウトファイルのルート要素にXML名前空間を追加することを忘れないでください:

xmlns:app="http://schemas.android.com/apk/res/com.adwhirl" 

com.adwhirl.AdWhirlLayout要素自体はしかしLinearLayout以内に存在するかもしれません。ここで

はXMLスニペットの例です:あなたはタイプAdWhirlLayoutに直線的なレイアウトをキャストしているため

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:app="http://schemas.android.com/apk/res/com.adwhirl 
    ... other LinearLayout attributes here"> 

<com.adwhirl.AdWhirlLayout 
    android:id="@+id/adwhirl_layout" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" /> 

    ...other elements here 
関連する問題