Android:如何从膨胀的自定义组件中访问xml资源

时间:2012-03-22 19:53:30

标签: android null android-xml layout-inflater findviewbyid

我对Android很新,我正在尝试在我的Android应用程序中构建自定义组件。为此,我正在扩展FrameLayout,以便我的自定义组件可以包含一个视图顶部的微调器(我最终将在视图中绘制,但此刻它只是空白)。

在扩展FrameLayout的类中,我想设置微调器按钮,我在xml中进行了布局。但是,从该类中调用findViewById会返回null。从这里阅读类似问题的答案,我认为我需要从一个活动调用findViewById(事实上,如果我从一个活动中设置微调器)扩展活动的类,一切正常)。然后,一种解决方案是将活动传递给我的FrameLayout类的构造函数。但是,我自己从不调用我的FrameLayout类的构造函数,因为我使用layoutinflater来对它进行充气。我假设布局inflater正在调用我的FrameLayout类的构造函数,我不知道如何在其构造函数调用中添加一个参数。

任何人都可以告诉我我做错了什么,或者我应该如何接近这个?

以下是我的代码的简化版本:

我的自定义FrameLayout类:

package com.example.myoscilloscope.gui;

import android.app.Activity;
import android.content.Context;
import android.util.AttributeSet;
import android.util.Log;
import android.widget.FrameLayout;
import android.widget.Spinner;

import com.example.myoscilloscope.R;

public class Oscilloscope extends FrameLayout {

    //variables
    private Spinner chanSelector; //the channel selector

    // overloading constructors
    public Oscilloscope(Context context) { this(context, null, 0); }
    public Oscilloscope(Context context, AttributeSet attrs) { this(context, attrs, 0); }

    public Oscilloscope(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);

            //set up the spinner.
            chanSelector = (Spinner) findViewById(R.id.channel_spinner);

            if(chanSelector == null){
                Log.d("FROMTOM", "CHANNELSELECTOR IS NULL!");
            }

    }

}

我的活动课程很大,但是按下按钮时示波器会膨胀,所以相关部分(我认为)是:

import com.example.myoscilloscope.gui.Oscilloscope;

// ...

public void addchannel(View v){ 
    //this initialization is actually done elsewhere, but I've copied it here
    //  for simplicity's sake
    private LayoutInflater oscilloscopeInflater; 
    LinearLayout myOscilloscopeHolder;

    oscilloscopeInflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    myOscilloscopeHolder = (LinearLayout)findViewById(R.id.oscilloscopeHolder); 

    Oscilloscope myOscilliscope = (Oscilloscope)oscilloscopeInflater.inflate(R.layout.oscilloscope, myOscilloscopeHolder, false);       
    myOscilloscopeHolder.addView(trOscilloscopes[trChannelsDisplayed]);
}

这是我的Oscilloscope.xml文件,由我的主程序充实:

<?xml version="1.0" encoding="utf-8"?>
<com.example.myoscilloscope.gui.Oscilloscope xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/oscilloscope"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_weight="1" >

    <com.example.myoscilloscope.gui.Oscillator
        android:id="@+id/oscillator"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />

       <Spinner 
        android:id="@+id/channel_spinner"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom"
    />


</com.example.myoscilloscope.gui.Oscilloscope>

这是我的main.xml的相关部分:

<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@color/background_color" >

    <LinearLayout
        android:id="@id/oscilloscopeHolder"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_above="@id/rg_channels"
        android:layout_toLeftOf="@id/HistogramArea"
        android:orientation="vertical"
        android:background="#FFFFFF" >


    </LinearLayout>
</RelativeLayout>

希望这有点道理。任何见解都会非常感激。

汤姆

2 个答案:

答案 0 :(得分:4)

哎呀抱歉没有注意到那些是不同的观点...这应该可以解决你的问题。

您不应该在构造函数中使用findViewById,因为此时通胀尚未完成。将findViewById代码移动到名为onFinishInflate()的覆盖函数中。

    public class Oscilloscope extends FrameLayout {

        private Spinner chanSelector; //the channel selector

        public Oscilloscope(Context context) { this(context, null, 0); }
        public Oscilloscope(Context context, AttributeSet attrs) { this(context, attrs, 0); }
        public Oscilloscope(Context context, AttributeSet attrs, int defStyle) {
            super(context, attrs, defStyle);
        }

        @Override
        public void onFinishInflate(){
                super.onFinishInflate();        

                chanSelector = (Spinner) findViewById(R.id.channel_spinner);

                if (chanSelector == null) {
                    //Should never get here
                }
        }
    }

答案 1 :(得分:0)

您可以使用...

遍历孩子
getChildCount();
getChildAt(index);

然后,您可以将子ID与您要查找的内容进行比较。