博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
动态加入子控件
阅读量:5784 次
发布时间:2019-06-18

本文共 4675 字,大约阅读时间需要 15 分钟。

我想实现:点击button,动态生成 之前在xml里已经定义好的layout。

自己定义的已经定义好的xml文件: rizhi_pinglun.xml:

原来xml文件,就是 要把上面的xml插入这个布局中:rizhi_test.xml:

> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/rizhitest" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:background="#CAE1FF" > <TextView android:id="@+id/title" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@drawable/rizhi_title" android:text="xxx的日志" android:gravity="center" android:textColor="#454545" android:textSize="25sp" /> <TextView android:id="@+id/rizhi_title" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="#FFC0CB" android:text="尘埃落定,栖于之间" android:gravity="center" android:textColor="#454545" android:textSize="25sp" android:layout_margin="5dp" /> <RelativeLayout android:id="@+id/touxiang_layout" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@drawable/rizhi_background_white" android:layout_margin="5dp" android:orientation="horizontal" > <ImageView android:id="@+id/touxiang" android:layout_width="50dp" android:layout_height="50dp" android:background="@drawable/touxiang" /> <RelativeLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="70dp" android:background="#FFC0CB" android:layout_marginTop="5dp" > <TextView android:id="@+id/username" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="阳光下的向日葵" android:textColor="#454545" android:textSize="15sp" /> <TextView android:id="@+id/rizhi_time" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="2014年8月29日 12:45" android:textColor="#454545" android:textSize="15sp" android:layout_below="@id/username" android:layout_marginTop="3dp" /> </RelativeLayout> </RelativeLayout> <Button android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="按钮" /> </LinearLayout>

java文件:

	private Context context;	private Button button;		@Override	protected void onCreate(Bundle savedInstanceState) {		super.onCreate(savedInstanceState);		setContentView(R.layout.rizhi_test);		context = this;		button = (Button) findViewById(R.id.button);		button.setOnClickListener(new OnClickListener() {			@Override			public void onClick(View v) {								addMyView();			}		});			}
private View addMyView(){				//(1)				LayoutInflater inflater=(LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);				//或LayoutInflater inflater = LayoutInflater.from(Activity.this);				//或LayoutInflater inflater = getLayoutInflater();				//(2)				View view = inflater.inflate(R.layout.rizhi_pinglun, null);//你要加入的布局				//(3)				LayoutParams liaParams = new LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, 						LinearLayout.LayoutParams.WRAP_CONTENT);				liaParams.setMargins(20, 10,20, 10);//设置了左右上下边距,可是无论用				rizhitest.addView(view,liaParams);				//LinearLayout.LayoutParams.WRAP_CONTENT));			}
这儿,由于 原布局文件是LinearLayout。所以 动态生成的Layout都位于原来布局全部控件的下方。仅仅要点击button,就会生成新的layout,不会重叠。效果如图:

有个问题,假设原来的布局是RelativeLayout,能够解决边距问题。可是出现了一个问题,新生成的控件会覆盖掉原来生成的控件。给人的感觉是,仅仅生成一个控件。我也不知道为什么,欢迎大家提供好的建议。

RelativLayout xml文件: rizhi_test.xml:

private Context context;	private Button button;		@Override	protected void onCreate(Bundle savedInstanceState) {		super.onCreate(savedInstanceState);		setContentView(R.layout.rizhi_test);		context = this;		button = (Button) findViewById(R.id.button);		final View nView = addMyView(button);		button.setOnClickListener(new OnClickListener() {			@Override			public void onClick(View v) {								addMyView(nView);			}		});			}
private View addMyView(View xdView){		//(1)				LayoutInflater inflater=(LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);				//或LayoutInflater inflater = LayoutInflater.from(Activity.this);				//或LayoutInflater inflater = getLayoutInflater();				//(2)				View view = inflater.inflate(R.layout.rizhi_pinglun, null);				//(3)				RelativeLayout rizhitest = (RelativeLayout) findViewById(R.id.rizhitest);				RelativeLayout.LayoutParams relParams = new LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, 						LinearLayout.LayoutParams.WRAP_CONTENT);				relParams.setMargins(20, 10,20, 10);				relParams.addRule(RelativeLayout.BELOW,xdView.getId());				rizhitest.addView(view,relParams);		return 	view;			}
測试效果如图:

你可能感兴趣的文章
Android 从硬件到应用:一步一步向上爬 4 -- 使用 JNI 方法调硬件驱动
查看>>
windows 如何查看端口占用情况?
查看>>
根据ImageView的大小来压缩Bitmap,避免OOM
查看>>
TEST
查看>>
loadrunner 的Administration Page里面设置
查看>>
程序员喜欢怎样的职位描述?(转)
查看>>
威胁快报|ProtonMiner挖矿蠕虫扩大攻击面,加速传播
查看>>
<<深入PHP面向对象、模式与实践>>读书笔记:面向对象设计和过程式编程
查看>>
架构的“一小步”,业务的一大步
查看>>
聊聊flink JobManager的heap大小设置
查看>>
PAT A1116
查看>>
App上架/更新怕被拒? iOS过审“避雷秘籍”请查收
查看>>
CentOS 7 防火墙操作
查看>>
关于 top 工具的 6 个替代方案
查看>>
程序员最讨厌的9句话,你可有补充?
查看>>
PAT A1037
查看>>
浅谈RPC
查看>>
Learn Python the Hard Way
查看>>
【C++基础】 类中static private public protected
查看>>
centos6装python3,并安装requests, lxml和beautifulsoup模块
查看>>