我正在开发一个项目,我需要通过该程序动态添加TextView
和Spinner
。我能够从我的程序中成功地动态添加这两件事。
下面是我用过的XML布局。
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/llayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<Button
android:id="@+id/button1"
android:layout_width="100px"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal|center"
android:gravity="center_vertical|center_horizontal"
android:text="Save" />
</LinearLayout>
</ScrollView>
Problem Statement:-
所以我想要的是 - 所有TextView
和Spinner
应首先显示,然后在最后Button
显示。
但目前发生的事情Save Button
会显示在顶部,然后显示所有其他TextView and Spinner
。
我怎样才能确定,Button位于屏幕的底部。
下面是截图,您可以从中找出问题所在。我想在屏幕底部显示“保存”按钮。
答案 0 :(得分:1)
或者您可以在代码中创建这样的按钮,并在添加了如下所示的所有微调器和文本视图后添加到您的布局中,您将必须从xml中删除按钮的声明:
Button button = new Button(this) ///this is a context object
button.setWidth(100);
button.setText("Save");
layout.addView(button);
您可以动态创建布局并将按钮添加到该布局,然后将此布局添加到超级布局
或者您可以做的是在res / layout / savebutton_layout.xml中声明一个新的xml文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:id="@+id/lLayoutBT"
>
<Button
android:id="@+id/saveBT"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="@string/save" />
</LinearLayout>
现在在您的代码中,您必须找到包含该按钮的此布局,然后将此布局添加到您的主布局中(就像您添加按钮一样)
例如
LinearLayout buttonLayout =(LinearLayout) view.findViewById(R.id.lLayoutBT);
views.add(buttonLayout);
答案 1 :(得分:0)
如果您将LinearLayout
更改为RelativeLayout
,请将其添加到Button
<Button
...
android:layout_alignParentBottom="true"/>
它应该给你你想要的东西。我经常使用RelativeLayout
而不是LinearLayout
,因为在大多数情况下,它更灵活,更有效率。他们需要一点时间来习惯,但绝对值得花时间去理解和实施
修改强>
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/llayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button1"
android:layout_width="100px"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"/>
android:text="Save" />
</RelativeLayout>
</ScrollView>
这样的事情应该有用。你可能需要稍微玩一下才能得到你想要的东西,但这应该会让你到那里。
答案 2 :(得分:0)
如果您使用RelativeLayout
(而不是LinearLayout
),则可以访问以下属性:
<Button
android:id="@+id/button1"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
...
</Button>