6

我正在尝试通过 xml 创建我的自定义视图,但屏幕没有显示我的视图,因为它没有膨胀。我的自定义视图 xml 如下:

 <?xml version="1.0" encoding="utf-8"?>
<ViewSwitcher xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/profileSwitcher"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#FFFFFF" >

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

        <ImageView
            android:id="@+id/imgAdvertise"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:src="@android:drawable/btn_minus" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal" >

        <TextView
            android:id="@+id/txtAdvertise"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:text="asdas" />
    </LinearLayout>

</ViewSwitcher>

我有我的自定义View类:

public class MyCustomView extends View{

    TextView textAdvertise;
    ImageView imageAdvertise;
    View view;
    ViewSwitcher switcher ;

    public MyCustomView(Context context, AttributeSet attrs) {
        super(context, attrs);
        // TODO Auto-generated constructor stub

        LayoutInflater layoutInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        if (layoutInflater != null) {
            view = layoutInflater.inflate(R.layout.main, null);

        }

        initialize();
    }

    public void initialize() {
        // TODO Auto-generated method stub

        textAdvertise = (TextView) view.findViewById(R.id.txtAdvertise);
        imageAdvertise = (ImageView) view.findViewById(R.id.imgAdvertise);
        switcher = (ViewSwitcher) view.findViewById(R.id.profileSwitcher);
        startAnimation();

    }

    public void startAnimation() {
        // TODO Auto-generated method stub

        new Thread() {
            public void run() {

                for (;;) {
                    try {

                        Thread.sleep(2000);
                        hRefresh.sendEmptyMessage(5);
                    } catch (Exception e) {
                    }
                }
            }
        }.start();
    }

    Handler hRefresh = new Handler() {
        public void handleMessage(Message msg) {
            switch (msg.what) {
            case 5:
                switcher.showNext();
                // To go back to the first view, use switcher.showPrevious()
                break;
            default:
                break;
            }
        }
    };

}

在我必须显示的基本 xml 布局中View,是一个按钮和我View的 as:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<Button
    android:id="@+id/button1"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:text="Button" 
    android:layout_weight="1"/>

<com.example.viewswitcher.MyCustomView 
    android:id="@+id/MyView"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="1"

    />

谁能告诉我出了什么问题?

4

3 回答 3

9

您将什么也看不到,因为MyCustomView在您编写它时没有任何内容。首先,我会使用其中一个ViewGroups孩子而不是View(比如LinearLayoutRelativeLayout):

public class MyCustomView extends LinearLayout {

    TextView textAdvertise;
    ImageView imageAdvertise;
    View view;
    ViewSwitcher switcher ;

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

    public MyCustomView(Context context, AttributeSet attrs) {
        super(context, attrs);
        LayoutInflater layoutInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        if (layoutInflater != null) {
            view = layoutInflater.inflate(R.layout.main, this, true);
        }
        initialize();
    }

     public MyCustomView(Context context, AttributeSet attrs, int theme) {
         super(context, attrs, theme);
     }
// ...
于 2012-05-08T06:47:49.380 回答
3

使用它来扩展您的布局。 编辑

  View headerView = View.inflate(this, R.layout.layout_name, null);

这将返回您的 xml 文件的父布局,然后您可以直接使用它,或者您可以通过使用找到任何其他视图

编辑

headerView.findViewById(R.id.view_id);

希望它会工作

于 2012-05-08T07:05:54.377 回答
0

我认为您需要的不是自定义视图。也许您应该继承自 View 的 Fragment 类。

在这里查看如何实现自己的片段。

于 2012-05-08T06:50:31.457 回答