我有以下指定的xml文件
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.testapp.MainActivity" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
</RelativeLayout>
如果我想采用relativelayout(_main)并以编程方式将其分配给local relativeoutout变量,然后将其设置为contentview而不是设置为
setContentView(R.layout.activity_main);
我尝试了其他方式
main = (RelativeLayout)findViewById(R.id.main);
我还是得到了错误。获得它的方法是什么?我的目标是将自定义视图加载到当前布局。怎么做?
答案 0 :(得分:3)
我不确定我是否理解你在这里想做什么,但如果你需要以编程方式获取根视图并在以后使用它,你可以这样做:
RelativeLayout rlMain = (RelativeLayout) getWindow().getDecorView().findViewById(R.id.main)
但正如Nauman Afzaal所说,你应该夸大自定义视图,而不是按照你现在尝试的方式添加它。
答案 1 :(得分:1)
我的目标是将自定义视图加载到当前布局。如何做。
您应该将自定义视图扩展为当前添加的视图。您可以在主xml中定义任何相对布局,然后在其中扩充新视图。