0

我已经创建了扩展 View 的类,我正在尝试在布局中进行 layout.addView(somthing),没有例外。

布局

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</RelativeLayout>

班级

public class Navigator extends View {
Context context;
RelativeLayout layout = (RelativeLayout) findViewById(R.layout.navigator);

public Navigator(Context context) {
    super(context);
    this.context = context;
}

TextView tab1 = new TextView(context);
tab1.setText("blah");
PROBLEM-> layout.addView(tab1);
}
4

1 回答 1

0

您是否将扩展视图添加到活动?

因为您正在修改您的视图,但我看不到您将“导航器”视图附加到哪里。

另一件事是您在 XML 上声明的 RelativeLayout 没有 ID,因此您将永远找不到具有 R.id.navigator id 的 RelativeLayout。

于 2012-11-23T20:31:57.377 回答