1

我有两个类:一个是活动,第二个是扩展 LinearLayout。这是活动代码:

public class SecondActivity extends Activity{

    private Button button;
    private ClassTabs tab;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.second_activity);


        Button next = (Button) findViewById(R.id.nextActivity);
        button = new Button(getApplicationContext());
        LayoutInflater inflater = LayoutInflater.from(this);
        tab = (ClassTabs) inflater.inflate(R.id.tab, null);
        tab.addTab(button);

        next.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                Intent intent = new Intent(SecondActivity.this, ThirdActivity.class);
                startActivity(intent);
            }
        });
    }


}

和 xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <com.example.actionbartest.ClassTabs
        android:id="@+id/tab1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        />

    <Button
        android:id="@+id/nextActivity"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" 
        android:layout_marginTop="100dp"
        />

</LinearLayout>

这是类扩展 LinearLayout:

public class ClassTabs extends LinearLayout{

    Button button;
    public ClassTabs(Context context, AttributeSet attrs) {
        super(context, attrs);

    }
    public ClassTabs(Context context) {
        super(context);

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

    }

    private void setupViewItems() {
        button = new Button(getContext());      
    }

     public void addTab(Button child){
            LinearLayout tab = (LinearLayout) findViewById(R.id.tab);
            tab.addView(child);
     }

}

和 xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/tab"
    android:layout_width="match_parent"
    android:layout_height="40dp"
    android:orientation="horizontal"
    android:background="@color/blue"
   >





</LinearLayout>

现在你可以看到我有方法向这个布局添加一些子元素。我想从活动中向这个布局添加一些按钮。在那个解决方案中,我得到了 nullPointer 异常。在这种情况下,如何使用其他类的方法从活动中添加一些元素addTab()

编辑:这就是我想要的:在这种情况下,我有一个活动“第二个活动”,我想使用“ClassTabs”中的布局。我的 ClassTabs 我想要一个方法,它将按钮添加到在活动中膨胀的布局。我想在布局中使用 ClassTab 中的部分布局运行活动。下一步是从 ClassTab 向这个膨胀的布局添加按钮,但我想在“第二个活动”的代码中这样做。我想在 ClassTab 中有方法来添加按钮,因为我想在其他活动中使用该方法。

4

1 回答 1

0

首先,您不必扩展 LinearLayout 只是为了动态添加子级,只要您不想为它覆盖某个行为,不要扩展它,而是使用普通的 linearLayout 并添加子级使用addview()方法。

在您的代码中:

xml

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout 
    android:id="@+id/layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    />

<Button
    android:id="@+id/nextActivity"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Button" 
    android:layout_marginTop="100dp"
    />

  </LinearLayout>

然后在您的活动中:

LinearLayout linearLayout;
@Override
public void onCreate(Bundle bundle) {
                 super.onCreate(bundle);
                 linearLayout = (LinearLayou) findViewById(R.layout.linearLayout);    
                }

然后,当您想添加任何视图“TextView / Button .....”时,只需使用:

Button button = new Button(this);
..... // modify the button
linearLayout.addChild(button);
于 2013-02-04T09:12:27.763 回答