我想添加一个线性布局,其中包含单击按钮的TextView和imageView 并且添加的线性布局也包含在另一个线性布局中 所以我应该怎么做
答案 0 :(得分:0)
@Override
protected void onCreate(Bundle savedInstanceState) {
setContentView(R.layout.main_activity_layout);
final container findViewById(R.id.container);
final LayoutInflater inflater = getLayoutInflater();
Button button = findViewbyId(R.id.button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
addView(inflater, container)
}
});
}
private void addView(LayoutInflater inflater, ViewGroup container) {
inflater.inflate(R.layout.imageview_Label_layout, container, true);
}
在这里,您的布局会放大imageview_Label_layout.xml:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher"
android:layout_marginEnd="10dp"/>
<TextView
android:id="@+id/labelView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:text="@string/app_name"/>
</LinearLayout>
这是您的活动main_activity_layout.xml:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"/>