【android LayoutInflater】在一个已有的布局里动态添加另一个布局,并且设置它的位置属性
我想实现点击“添加共享”按钮动态加载右边的布局。就是用户添加的数量是不确定的,要怎样才能实现动态地生成布局在右边或下边呢?例如每行显示4个。为什么我这样是错的?publi...
我想实现点击“添加共享”按钮动态加载右边的布局。就是用户添加的数量是不确定的,要怎样才能实现动态地生成布局在右边或下边呢?例如每行显示4个。为什么我这样是错的?
public class MainActivity extends Activity {
LinearLayout layout;
ImageButton add;
LayoutInflater inflater;
LinearLayout lin;
CircleImageView v;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_share);
inflater = LayoutInflater.from(this);
//要被加载的父布局
lin = (LinearLayout) findViewById(R.id.myshare);
//要加载的布局
layout = (LinearLayout) inflater.inflate(R.layout.item_share, null).findViewById(R.id.add_share);
add = (ImageButton) findViewById(R.id.icon_share);
add.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
lin.addView(layout);
}
});
}
如下图: 展开
public class MainActivity extends Activity {
LinearLayout layout;
ImageButton add;
LayoutInflater inflater;
LinearLayout lin;
CircleImageView v;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_share);
inflater = LayoutInflater.from(this);
//要被加载的父布局
lin = (LinearLayout) findViewById(R.id.myshare);
//要加载的布局
layout = (LinearLayout) inflater.inflate(R.layout.item_share, null).findViewById(R.id.add_share);
add = (ImageButton) findViewById(R.id.icon_share);
add.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
lin.addView(layout);
}
});
}
如下图: 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询