动态创建布局

时间:2014-01-24 15:45:50

标签: android layout dynamic

我正在尝试动态创建布局。 我从数据库中获取数据,并使用它来定义布局。 数据库中的每一行都应显示在布局中。

我不想使用ListView,因为我的下一步是点击布局并显示一些细节。

以下是我创建动态布局的代码:

LayoutInflater inflater = (LayoutInflater)getApplicationContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View v = inflater.inflate(R.layout.layoutausgabe,null);

        // insert into main view
        View insertPoint = findViewById(R.id.scrollView);
        ((ViewGroup) insertPoint).addView(v, 0, new ViewGroup.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.FILL_PARENT));

这是应该插入的布局:

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

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

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:text="Abfahrt - Ankunft |"
        android:id="@+id/textView" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:text=" Dauer |"
        android:id="@+id/textView2" />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:text=" Umstieg |"
        android:id="@+id/textView2" />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:text=" Route"
        android:id="@+id/textView2" />
</LinearLayout>

这是应该插入布局的地方(Scrollview):

<ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/scrollView" >


    </ScrollView>

感谢您的帮助!!!!

2 个答案:

答案 0 :(得分:0)

试试这个:

View insertPoint = findViewById(R.id.scrollView);
View v = inflater.inflate(R.layout.layoutausgabe,insertPoint, false);

((ViewGroup) insertPoint).addView(v, 0, new ViewGroup.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.FILL_PARENT));

答案 1 :(得分:0)

ScrollView只占用一个孩子,所以你不能添加很多孩子,

要解决这个问题,你应该在ScrollView中放置一个方向设置为verticatl的LinearLayout,然后将你的视图添加到LinearLayout。

希望有所帮助