我正在尝试创建一个设计(我非常擅长这个-__-),我将有一个滚动视图和一组3个按钮,在屏幕底部水平对齐ALWAYS(我的意思是使用我的按钮滚动视图应该在我的布局之上,并且可以滚动,但按钮必须始终显示/可见)
我已经尝试了几个解决方案,我使用的最后一个是这个,但它没有成功:(
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<RelativeLayout
android:id="@+id/header"
android:layout_alignParentTop="true"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</RelativeLayout>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/scroll"
android:layout_above="@+id/footer"
android:layout_below="@+id/header">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/imageView1"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Chargement en cours"
android:id="@+id/TNom"
android:layout_below="@+id/imageView1"
android:layout_centerHorizontal="true" />
</RelativeLayout>
</ScrollView>
<RelativeLayout
android:id="@+id/footer"
android:layout_width="match_parent"
android:layout_height="wrap_content">
android:layout_alignParentBottom="true">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="+"
android:id="@+id/Bplus"
android:onClick="onClickSuivant"
android:layout_toLeftOf="@+id/Begale"
android:layout_toStartOf="@+id/Begale" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="="
android:id="@+id/Begale"
android:onClick="onClickSuivant"
android:layout_centerHorizontal="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="-"
android:id="@+id/Bmoins"
android:onClick="onClickSuivant"
android:layout_toRightOf="@+id/Begale"
android:layout_toEndOf="@+id/Begale" />
</RelativeLayout>
注意:我不需要“标题”部分...但是我发现的最后一个代码有它,而且似乎正是我需要....似乎只有-__- :(
我对这个设计有两个问题(我在问,我问一切:p)
1 /我如何强制将我将要下载到ImageView1中的图像的大小达到“最大”高度(我的意思是我的图片将是肖像或风景...让我们说10 * 15和15 * 10 ..我怎么可能强迫他们10 * 6.666而不是15 * 10&lt; =这是一个例子......我不知道我将拥有的图像尺寸,但我知道我希望它们每次都在同一高度,宽度可能会根据比例而变化)
2 /为什么Lint用红色写这部分......
android:textAppearance="?android:attr/textAppearanceLarge"
提前告诉所有在此停留的人并给我提示:) (对不起我的英语)
编辑:我找到了一些答案!!我使用RELATIVELayout而不是LINEARLayout,建议做我想做的事情......Si这里是“新”模板(如有兴趣的话可供参考),我还有问题
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:orientation="vertical">
<ScrollView
android:layout_width="match_parent"
android:id="@+id/scroll"
android:layout_height="0dp"
android:layout_weight="1">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/imageView1"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Chargement en cours"
android:id="@+id/TNom"
android:layout_below="@+id/imageView1"
android:layout_centerHorizontal="true" />
</LinearLayout>
</ScrollView>
<LinearLayout
android:id="@+id/footer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="horizontal">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="+"
android:id="@+id/Bplus"
android:onClick="onClickSuivant"
android:layout_toLeftOf="@+id/Begale"
android:layout_toStartOf="@+id/Begale" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="="
android:id="@+id/Begale"
android:onClick="onClickSuivant"
android:layout_centerHorizontal="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="-"
android:id="@+id/Bmoins"
android:onClick="onClickSuivant"
android:layout_toRightOf="@+id/Begale"
android:layout_toEndOf="@+id/Begale" />
</LinearLayout>
使用之前的设计,按钮很好地对齐并占据所有屏幕(match_parent)...这一个,它们位于左下角...因为android:layout_centerHorizontal =“true”是为RelativeLayout,问题来自于......我怎么能改变它?
答案 0 :(得分:1)
尝试在LinearLayout中使用android:gravity="center"
(封装按钮)或在Button元素中使用android:layout_gravity="center"
。我相信第一个选择就足够了。
编辑:关于Lint警告信息,我认为它与此行相关:
android:text="Chargement en cours"
不鼓励使用硬编码字符串。尝试用android:text="@string/my_string_id"
替换它,并在strings.xml文件中定义这样的字符串。