我正在创建一个简单的Android应用程序。对于我的登录页面,我希望有一个背景图片和顶部的另一个视图,就像我下面的样本(想象黑色部分是我的背景图片,绿色部分是带有描述和两个按钮的视图!)现在我将背景图片设置为我的相对布局活动,我正在使用我正在谈论的视图的警告对话框!
我想知道有没有更好更清洁的方法呢?因为有警告语录,我需要照顾很多案例!
非常感谢你
答案 0 :(得分:0)
我建议您为活动更改线性布局(具有垂直方向属性)的相对布局,然后将图像和登录面板添加到其中。 通过这种方式,您可以像行一样排列视图! 下面是一个简单的xml示例:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
inser the image view ..
insert the login pannel
</LinearLayout>
答案 1 :(得分:0)
试试这个,
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="#00FF00"
android:layout_margin="16dp" >
<TextView
android:id="@+id/description"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Description"
android:padding="16dp"
android:textColor="#FFFFFF" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/description"
android:orientation="horizontal"
android:weightSum="2" >
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="bottom"
android:padding="16dp"
android:text="Button1" />
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:padding="16dp"
android:text="Button2" />
</LinearLayout>
</RelativeLayout>
</RelativeLayout>