当前位置: 代码迷 >> Android >> 在线性布局中动态添加view解决思路
  详细解决方案

在线性布局中动态添加view解决思路

热度:17   发布时间:2016-04-28 04:15:10.0
在线性布局中动态添加view
我想在线性布局中添加一个textview 在线性布局中的一个控件左边~~求大神帮忙~~
------解决方案--------------------
LienarLayout ly = new LinearLayout(getApplicationContext());
ly.setsetOrientation(LinearLayout.HORIZONTAL);
TextView t = new TextView(getApplicationContext());
lyl.addView(t,LinearLayout.layoutParams(100,100));
  相关解决方案