2015-10-27 73 views
0

我在我的android应用程序中有这个简单的活动,但我不知道如何放置我的按钮,因此它出现在各种屏幕尺寸的相同位置。Android布局对象放置

我希望按钮始终放在屏幕的底部。显示的屏幕截图来自手机屏幕。当显示在更大的屏幕上时,按钮位于更高的位置。

我该如何解决这个问题?

感谢

See this screenshot

回答

0

这是我落得这样做。感谢所有发布的人,它帮助我朝着正确的方向前进!

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    android:id="@+id/container" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior" 
    tools:showIn="@layout/activity_main" 
    tools:context="xxxx.MainActivity" 
    android:orientation="vertical" 
    android:weightSum="1"> 

    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Dernières nouvelles Twitter" 
     android:id="@+id/textView" 
     android:textStyle="bold" 
     android:textSize="17dp" 
     android:paddingLeft="8dp" 
     android:paddingTop="6dp" 
     android:paddingRight="6dp" 
     android:paddingBottom="6dp" 
     android:layout_alignParentTop="true"/> 

    <ListView 
     android:layout_width="wrap_content" 
     android:layout_height="fill_parent" 
     android:id="@+id/listView_tweets" 
     android:layout_above="@+id/buttonDisplay" 
     android:choiceMode="none" 
     android:paddingTop="25dp" 
     android:paddingLeft="10dp" 
     android:paddingRight="10dp"/> 

    <Button 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Horaire" 
     android:layout_margin="5dp" 
     android:id="@+id/buttonDisplay" 
     android:onClick="buttonGotoDisplay" 
     android:layout_alignParentBottom="true" 
     android:layout_centerHorizontal="true"/> 

</RelativeLayout> 
0

您应该使用RelativeLayout

如果你有一个RelativeLayout充满整个屏幕,你应该能够使用android:layout_alignParentBottom的按钮移动到屏幕底部。

如果底部的按钮没有显示,那么上面的布局可能会占用所有空间。在这种情况下,您可以先将按钮放置在布局文件中,然后使用android:layout_above将布局的其余部分放在视图上方。

0

制作footerButton.xml:

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/footer" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_alignParentBottom="true"  
    android:gravity="center" > 

    <Button 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_margin="5dp" 
     android:text="HORAIRE" 
     android:textColor="#ffffff" 
     android:textSize="20sp" /> 

</RelativeLayout> 

而在你所有的布局文件中添加像下面一行:

的Android Activity_Layout

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



    <!-- Footer aligned to bottom --> 
    <include layout="@layout/footer" /> 

    <!-- Content above footer --> 
    <RelativeLayout 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:layout_above="@id/footer" 
    android:layout_below="@id/header" 
    android:gravity="center"> 

    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Content goes here" 
     android:textColor="#FFFFFF" 
     android:textSize="20sp" /> 
    </RelativeLayout> 

</RelativeLayout> 

希望这本书能解决你的问题

0

看一看RelativeLayout。使用此ViewGroup中,并添加Button内配置有alignParentBottom

<RelativeLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 

    <Button 
     android:id="@+id/button_id" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:alignParentBottom="true" 
     android:text="HORAIRE" 
     android:layout_margins="<your_margin_in_dp>" /> 

</RelativeLayout> 
1

可以使用的RelativeLayout用这个参数(机器人:layout_alignParentBottom = “真”)

<RelativeLayout 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"> 

    <Button 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_alignParentBottom="true" 
      android:text="Click Me!"/> 

</RelativeLayout>