在屏幕上移动按钮

时间:2013-10-30 19:53:22

标签: android eclipse

我是一个完整的菜鸟,当谈到日食和编码,然后开始在日食方面,我设法让应用程序工作,并做我想要的,但我有很大的问题移动我的按钮在前面的屏幕,即图像在顶部,以及图像下方的3行3个按钮,按钮在屏幕中居中,请温柔地对待我大声笑我知道你的所有代码头,我不是,如果你可以请指向我价值是,以及放什么,这将是伟大的。我已经干涉了.java和.x文件中的代码,继承了xml的代码,我已经更改了所有的值,一次只能看到结果1,而这有助于将按钮定位正确左边,中间的间距,我不能让按钮向下移动,

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/containerView"
android:background="@android:color/transparent"    
android:padding="0dip"
android:layout_margin="0dip"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

    <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/verticalScrollView" 
        android:layout_width="fill_parent" 
        android:layout_height="fill_parent">

        <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/tableLayout" 
            android:layout_width="fill_parent" 
            android:layout_height="fill_parent">
        </TableLayout>

    </ScrollView>

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/containerViewHorizontal"
            android:background="@android:color/transparent"    
            android:padding="0dip"
            android:layout_margin="0dip"
            android:orientation="horizontal"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">        

            <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                    android:id="@+id/containerViewHorizontalBottom"
                    android:background="@android:color/transparent"    
                    android:padding="0dip"
                    android:layout_margin="0dip"
                    android:orientation="vertical"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content">

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

                    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                        android:id="@+id/containerHorizontalButtons"
                        android:background="@android:color/transparent"    
                        android:padding="0dip"
                        android:layout_margin="0dip"
                        android:orientation="horizontal"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content">
                    </LinearLayout>

                </HorizontalScrollView> 

            </LinearLayout>

    </RelativeLayout>

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

使用RelativeLayout作为父级布局。

Any Element移至屏幕底部android:layout_alignParentBottom="true" 居中Any Element android:layout_centerHorizontal="true"