独自のレイアウト ファイルに入れたい共通の LinearLayout があります。異なるレイアウト ファイルの異なるビューをラップするために使用されます。ビューの周りにインクルードをラップする (または同様の効果を達成する) ことは何とか可能ですか?
質問する
47 次
1 に答える
1
I have a common LinearLayout that I want to put into its own layout file
LinearLayout
を別のレイアウト ファイルに配置します。このレイアウト ファイルを膨張させます。
View mLinearLayoutView = getLayoutInflater().inflate(R.layout.linear_layout, null);
LinearLayout ll = (LinearLayout) mLinearLayoutView.findViewById(R.id.my_linear_layout);
// Inflate the view you want to include within the LinearLayout
View mChildView = getLayoutInflater().inflate(R.layout.any_other_child_view, null);
// Initialize/setup any child components
ll.addView(mChildView); // Or, ll.addView(mChildView, optional_layout_parameters);
setContentView(mLinearLayoutView);
于 2013-07-25T05:16:57.120 に答える