将MainActivity视图添加到另一个xml文件布局
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将MainActivity视图添加到另一个xml文件布局相关的知识,希望对你有一定的参考价值。
我想从我的MainActivity将一个ImageView添加到另一个xml文件(layout.xml)实际上,我试过这个代码但它不起作用,这里是Mainactivity,activity_main.xml和layout.xml的代码源:
主要内容:
public class MainActivity extends AppCompatActivity {
LinearLayout linearLayout;
ImageView imageView;
Dialog dialog;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
imageView = new ImageView(this);
linearLayout = (LinearLayout)findViewById(R.id.id_layout);
imageView.setImageResource(R.drawable.ic_launcher_background);
linearLayout.addView(imageView);
dialog = new Dialog(this);
dialog.setContentView(linearLayout);
dialog.show();
}}
这是主要活动Activity_main.xml的xml文件:
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="sofware.dz.test.MainActivity">
</android.support.constraint.ConstraintLayout>
这是xml文件layout.xml的代码源:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/id_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
</LinearLayout>
答案
它看起来不像你在任何地方给你的layout.xml
充气。
你可以更换线路
linearLayout = (LinearLayout)findViewById(R.id.id_layout);
有了这个:
linearLayout = (LinearLayout)LayoutInflater.from((Context) this).inflate(R.layout.layout, null)
您可以将膨胀视图作为线性布局引用,因为它是xml的根视图。如果你有其他东西作为根,那么你必须在最后添加findViewById(R.id.id_layout)
调用。
另一答案
如果您尝试使用Dialog
中定义的布局创建layout.xml
作为内容视图,则将活动中的ImageView
添加到其中,请尝试以下操作:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
imageView = new ImageView(this);
imageView.setImageResource(R.drawable.ic_launcher_background);
dialog = new Dialog(this);
dialog.setContentView(R.layout.layout); // this inflates layout.xml in the dialog
LinearLayout layout = dialog.findViewById(R.id.id_layout); // grab root view from inflated layout
layout.addView(imageView);
dialog.show(); // show the dialog, which now contains the ImageView
}
这是如何工作的,一步一步:
- 设置您正在执行的活动的内容视图:
setContentView(R.layout.activity_main);
- 创建你想要添加的
ImageView
(你也已经这样做了):imageView = new ImageView(this); imageView.setImageResource(R.drawable.ic_launcher_background);
- 创建对话框,并将其内容视图设置为layout.xml布局的资源ID(使其膨胀):
dialog = new Dialog(this); dialog.setContentView(R.layout.layout); // this inflates layout.xml in the dialog
- 从对话框中的膨胀布局中获取根视图:
LinearLayout layout = dialog.findViewById(R.id.id_layout); // grab root view layout.addView(imageView);
- 将ImageView添加到根视图:
layout.addView(imageView);
以上是关于将MainActivity视图添加到另一个xml文件布局的主要内容,如果未能解决你的问题,请参考以下文章