Android:View.inflate没有在屏幕上显示第二个布局

时间:2016-03-26 12:16:30

标签: android android-fragments

两个布局文件:

activity_maps.xml

<FrameLayout
    android:id="@+id/fragment_container"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:orientation="vertical"
    xmlns:android="http://schemas.android.com/apk/res/android">

    <fragment xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:map="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/map"
    android:name="com.google.android.gms.maps.SupportMapFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.jawadh.startthreeproject.MapsActivity" />
    <fragment
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/place_autocomplete_fragment"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:name="com.google.android.gms.location.places.ui.PlaceAutocompleteFragment"
        />
</FrameLayout > 

second.xml

<?xml version="1.0" encoding="utf-8"?>

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/view_container"
    android:layout_height="50dip"
    android:layout_width="50dip"
    >

    <Button
        android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    xmlns:android="http://schemas.android.com/apk/res/android" />

    <TextView
        android:id="@+id/textViewSource"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <TextView
        android:id="@+id/textViewDest"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</FrameLayout>

在我的活动中,一旦mapsActivity被加载并正常工作。我想在现有视图上加载second.xml的视图。 所以,我正在尝试这个:

 final FrameLayout frameLayout = (FrameLayout)View.inflate(getApplicationContext(),R.layout.second,null);

        final Button button = (Button)frameLayout.findViewById(R.id.button);;
        button.setBackgroundColor((Color.GRAY));
        button.setText("Direction");
        button.setY(300);
        button.setX(300);

        TextView textViewSource = (TextView)frameLayout.findViewById(R.id.textViewSource);
        textViewSource.setText(place.getAddress().toString());
        textViewSource.setTextColor(Color.BLACK);
        textViewSource.setBackgroundColor(Color.WHITE);

        frameLayout.setBackgroundColor(Color.BLUE);

期望:代码的最后一部分应该将te second.xml视图(framelayout)放在现有视图上。

3 个答案:

答案 0 :(得分:1)

警告:请勿使用应用程序上下文来扩充视图!

您在此处创建了第二个布局:

final FrameLayout frameLayout = (FrameLayout)View.inflate(this, R.layout.second,null);

现在您必须将其附加到视图层次结构。片段容器听起来不错:

FrameLayout container = (FrameLayout) findViewById(R.id.fragment_container);
FrameLayout.LayoutParams lp = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT);
container.addView(frameLayout, lp);

修改

或者你可以一次性充气和附加新视图:

FrameLayout container = (FrameLayout) findViewById(R.id.fragment_container);
final FrameLayout frameLayout = (FrameLayout)View.inflate(this, R.layout.second, container);

...因为FrameLayout默认会为您提供这些LayoutParams

/**
 * Returns a set of layout parameters with a width of
 * {@link android.view.ViewGroup.LayoutParams#MATCH_PARENT},
 * and a height of {@link android.view.ViewGroup.LayoutParams#MATCH_PARENT}.
 */
@Override
protected LayoutParams generateDefaultLayoutParams() {
    return new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
}

答案 1 :(得分:0)

嗯,需要更多细节。 嘿,无论你做什么,你都不是最好的方式。

无论如何,你在frameLayout中夸大了视图,但是你没有将它添加到现在的父级。 我不确定你想要实现什么,但我认为你错过了这一部分。

答案 2 :(得分:0)

您可以将设置可见性替换为 GONE 来替换视图。 在您的情况下,您应该创建一个xml文件而不是两个。在xml文件中,采用一个方向垂直的linearlayout。在此线性布局中,需要两个framelayout。当您的活动开始时,将第二个framelayout的可见性设置为 GONE 。在第一个framelayout中加载地图时,将其可见性设置为 GONE ,将第二个framelayout的可见性设置为 VISIBLE 。执行此操作时,第二个framelayout将自动替换第一个framelayout 示例代码:

 private LinearLayout llLogin;

 protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_login);

        llLogin = (LinearLayout) findViewById(R.id.loginlayout);
        llLogin.setVisibility(View.GONE);