3

このチュートリアルhttp://www.anotherandroidblog.com/2011/05/26/custom-composite-android-component/を使用してカスタム複合コンポーネントを作成しました

そして今、このコンポーネントを使用して、フラグメントのレイアウトに動的に追加しようとしています。インフレータを使用しています。

LinearLayout column1 = (LinearLayout) getActivity().findViewById(R.id.linear2);
IdeaWidget idea = (IdeaWidget) inflater.inflate(R.layout.idea_component, column1);

エラーが発生します:

11-02 16:07:25.074: E/AndroidRuntime(883): FATAL EXCEPTION: main
11-02 16:07:25.074: E/AndroidRuntime(883): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.architter/com.example.architter.MainActivity}: java.lang.ClassCastException: android.view.ContextThemeWrapper cannot be cast to android.app.Activity

ここにコードがあります..ありがとう!

カスタム コンポーネントの XML ドキュメント* * *

<?xml version="1.0" encoding="utf-8"?>
<com.example.architter.IdeaWidget 
    xmlns:android="http://schemas.android.com/apk/res/android"  
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical"
    >
    <ImageView
        android:id="@+id/image"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:contentDescription="@string/hello_world"
        ></ImageView>
    <TextView
        android:id="@+id/description"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        ></TextView>
    <ImageButton
        android:id="@+id/archthis"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:contentDescription="@string/hello_world"
        ></ImageButton>
</com.example.architter.IdeaWidget>

カスタムコンポーネントの Java クラス* **

package com.example.architter;

import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;

import android.app.Activity;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.util.AttributeSet;
import android.util.Log;
import android.widget.ImageButton;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;

public class IdeaWidget extends LinearLayout {

    private ImageView image;
    private TextView description;
    private ImageButton archthis;

    public IdeaWidget(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    protected void onFinishInflate() {
        super.onFinishInflate();
        ((Activity)getContext()).getLayoutInflater().inflate(R.layout.idea_component, this);
        setupViewItems();
    }

    private void setupViewItems() {
        description = (TextView) findViewById(R.id.description);
        image = (ImageView) findViewById(R.id.image);
        archthis = (ImageButton) findViewById(R.id.archthis);
    }

    public void setDescription(String text) {
        description.setText(text);
    }

    public void setImage(String url) {
        Bitmap bitImage = getBitmapFromURL(url);
        image.setImageBitmap(bitImage);
    }

    public void setArchthis(ImageButton imgb) {
        archthis = imgb;
    }

    public static Bitmap getBitmapFromURL(String src) {
        try {
            Log.e("src",src);
            URL url = new URL(src);
            HttpURLConnection connection = (HttpURLConnection) url.openConnection();
            connection.setDoInput(true);
            connection.connect();
            InputStream input = connection.getInputStream();
            Bitmap myBitmap = BitmapFactory.decodeStream(input);
            Log.e("Bitmap","returned");
            return myBitmap;
        } catch (IOException e) {
            e.printStackTrace();
            Log.e("Exception",e.getMessage());
            return null;
        }
    }
}
4

1 に答える 1

0

LogCat は、ContextThemeWrapper オブジェクトを Activity オブジェクトに変換しようとしていると述べていますが、これは実行できません。これはここで発生するようです:

((Activity)getContext()).getLayoutInflater().inflate(R.layout.idea_component, this);

良いニュースは、別の方法で LayoutInflater のコピーを取得できることです。

LayoutInflater.from(this).inflate(R.layout.idea_component, this);
于 2012-11-02T22:28:44.167 に答える