gpt4 book ai didi

android - 动态添加时不显示布局

转载 作者:行者123 更新时间:2023-11-29 01:09:03 30 4
gpt4 key购买 nike

我正在尝试将布局动态添加到 MainActivity(Android Studio 创建的默认 Android 应用程序)中,但未显示新布局。我尝试过不同的布局,但那个布局在 ~450 像素高度后被剪掉了。

我是 Android UI 编程的新手,我感觉我在添加函数时做错了什么。这是添加代码(灵感来自 this answer ):

LayoutInflater vi = (LayoutInflater) getApplicationContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
LinearLayout linearLayout = (LinearLayout) findViewById(R.id.linlayout);
View v = vi.inflate(R.layout.test_layout, null);

// insert into main view
ViewGroup.LayoutParams layoutParams = new ViewGroup.LayoutParams(
1000,//ViewGroup.LayoutParams.FILL_PARENT,
1000);//ViewGroup.LayoutParams.FILL_PARENT);

linearLayout.addView(v, 0, layoutParams);

这是 activity_main.xml:

<include
android:id="@+id/include"
layout="@layout/content_main" />

<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
app:srcCompat="@android:drawable/ic_dialog_email" />

<LinearLayout
android:id="@+id/linlayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<!--<include layout="@layout/test_layout"/>-->
</LinearLayout>

这是我要添加的布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="1">

<ImageView
android:id="@+id/imageView2"
android:layout_width="188dp"
android:layout_height="191dp"
app:srcCompat="@mipmap/ic_launcher" />
</RelativeLayout>

如果我静态添加布局(在 xml 中添加 <include layout="@layout/test_layout"/>),test_layout显示正确。

我在这里做错了什么?

(在 Nexus 5X 上使用 Android 7.1.2)

最佳答案

使用此方法动态添加View:

LinearLayout myLayout = (LinearLayout)findViewById(R.id.linlayout);
View testlin= getLayoutInflater().inflate(R.layout.test_layout, myLayout, false);
myLayout.addView(testlin);

关于android - 动态添加时不显示布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44586720/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com