Android在布局中添加局部布局

时间:2016-03-31 15:36:31

标签: android android-layout

我有这个片段布局,其中一些内容需要动画(如显示/隐藏输入字段)。

现在我发现我可以通过使用花哨的动画(在线性布局上使用<item name="android:animateLayoutChanges">true</item>)来管理它。

我在这里遇到的问题是我需要以编程方式添加内容..

例如

    LinearLayout timesheetsWrapper = (LinearLayout)inflatedView.findViewById(R.id.new_timesheet_wrapper);
    EditText timeSheetName = new EditText(getContext());
    timeSheetName.setHint("Name");
    timesheetsWrapper.addView(timeSheetName);

现在我需要添加10个GUI组件并以编程方式为每个组件添加样式,这对我来说有点麻烦。

有没有办法可以将部分布局.xml文件添加到&#39;包装器中?

例如:

LinearLayout partialLayout = ...??
timesheetsWrapper.addView(partialLayout);

partialLayout.xml 包含所有GUI组件。

已经搜索过,但这对我来说有点混乱!

我希望我的问题有点清楚,如果没有(或需要其他信息)我很乐意编辑/提供。

提前致谢,尊重安卓机器人

0 个答案:

没有答案