如何以编程方式配置内部布局

时间:2017-07-25 10:53:36

标签: android android-layout

我在xml中定义了一个布局,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/footer_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_weight="1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center">

        <!-- add views here -->            

    </RelativeLayout>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/app"/>

</LinearLayout>

我在我的活动中对其进行了膨胀,但RelativeLayout需要TextViews,具体取决于应用程序中的数据。我怎么可能扩展它并在其中添加不同的视图?

注意:这与this question不同,因为我试图找出如何扩展内部 -layout而不使用我要添加的内容的类。

2 个答案:

答案 0 :(得分:0)

XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/footer_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id=@+id/inner_layout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center">

    <!-- add views here -->            

</RelativeLayout>

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/app"/>

</LinearLayout>

活动

 RelativeLayout relativelayout=(RelativeLayout) findViewById(R.id.inner_layout);
 relativelayout.addview(//Add view here(one will be allowed));

如果您在RelativeLayout中使用规则订购视图。最好使用LinearLayout。

答案 1 :(得分:0)

您只需在代码中创建Textviews即可。然后将它们添加到您的布局:

RelativeLayout innerLayout= (RelativeLayout)findViewById(R.id.inner_layout);

TextView textView = new TextView(this);

RelativeLayout.LayoutParams p = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);

textView.setLayoutParams(p);

innerLayout.addView(textView);