2

実行時にカスタム ビューに追加しようとしています。

MainActivity.java

package com.example.bug;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.view.ViewGroup;

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        android.view.ViewGroup root = (android.view.ViewGroup)getWindow().getDecorView().findViewById(android.R.id.content);
        View v0 = this.getLayoutInflater().inflate(R.layout.custom_view, null);
        View v1 = this.getLayoutInflater().inflate(R.layout.custom_view, null);
        ((android.widget.TextView)v0.findViewById(R.id.textView1)).setText("Text view 1");
        ((android.widget.TextView)v1.findViewById(R.id.textView1)).setText("Text view 2");
        // I expect v1 will below v0 as we are using vertical LinearLayout.
        // However, they are overlapping each others.
        root.addView(v0);
        root.addView(v1);
    }
}

custom_view.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="48dp"
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Large Text"
        android:textAppearance="?android:attr/textAppearanceLarge" />

    <EditText
        android:id="@+id/editText1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10" >
    </EditText>

</LinearLayout>

activity_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

</LinearLayout>

しかし、私は理解していません。2 番目のビューが 1 番目のビューの下部に表示されることを期待しています。ただし、結果が重複しています。

(Javaの方法でそれを行います)

ここに画像の説明を入力

私が間違って行った手順はありますか? ありがとうございました。

Java の代わりに XML を使用して 2 つのカスタム ビューを追加すると、問題なく動作することに注意してください。しかし、なぜ私のJavaのやり方がうまくいかないのか、まだ理解できませんか?

activity_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >
    <include layout="@layout/custom_view"/>
    <include layout="@layout/custom_view"/>
</LinearLayout>

(XMLの方法でそれを行います)

ここに画像の説明を入力

4

2 に答える 2

2

これは、Views をLinearLayoutinに追加するのではなく、 ではないactivity_main.xmlルートに追加するためです。あなたを直接参照して、次のように追加します。ViewGroupLinearLayoutLinearLayout

activity_main.xml

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

</LinearLayout>

MainActivity.java

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    LinearLayout root = (LinearLayout) findViewById(R.id.main_activity_linear_layout);
    View v0 = this.getLayoutInflater().inflate(R.layout.custom_view, null);
    View v1 = this.getLayoutInflater().inflate(R.layout.custom_view, null);
    ((android.widget.TextView)v0.findViewById(R.id.textView1)).setText("Text view 1");
    ((android.widget.TextView)v1.findViewById(R.id.textView1)).setText("Text view 2");

    // I expect v1 will below v0 as we are using vertical LinearLayout.
    // However, they are overlapping each others.
    root.addView(v0);
    root.addView(v1);
}
于 2013-04-08T12:48:21.757 に答える
0

ビューを追加するときに、コードで線形レイアウト パラメーター (幅と高さ) を明示的に指定することをお勧めします。

View v0 = this.getLayoutInflater().inflate(R.layout.custom_view, null);
View v1 = this.getLayoutInflater().inflate(R.layout.custom_view, null);
...

LayoutParams lp = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);

root.addView(v0, lp);
root.addView(v1, lp);

他のクラスからLinearLayout.LayoutParamsではなく、インポートしていることを確認してください。LayoutParams

于 2013-04-08T12:46:05.450 に答える