在充气

时间:2016-02-22 14:11:46

标签: java android layout-inflater

我想要在活动中显示线性布局。这是我用来执行此操作的代码:

final LayoutInflater factory = getLayoutInflater();
final View ps = factory.inflate(R.layout.photo_shooting, null);
final RelativeLayout photoshooting = (RelativeLayout) ps;

//other code...

rscroll.addView(photoshooting, lp);

和布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/photoshooting"
android:background="@drawable/dropdownborder">

<ImageView
    android:layout_width="match_parent"
    android:layout_height="200dp"
    android:id="@+id/selectedphoto" />

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/camera_and_film">

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:id="@+id/camera"
        android:background="@mipmap/camera" />

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:id="@+id/cameraroll"
        android:background="@mipmap/cameraroll" />
</RelativeLayout>

问题是当我将它添加到相对布局rscroll时它不会出现。我跑的时候为什么看不到它?

2 个答案:

答案 0 :(得分:1)

可能是因为你的RelativeLayout有id&#34; @ + id / photoshooting&#34;但是你正在添加&#34; R.layout.photo_shooting&#34;你的代码。

答案 1 :(得分:0)

我的问题是我没有像Blackbelt所提到的那样投射到正确的布局。它应该是:

LinearLayout photoshooting = (LinearLayout) ps;