我想在FrameLayout中添加一个在另一个下面的按钮,但它们应该是触摸的。但是,我无法做到这一点。这是我的代码:
<FrameLayout
android:id="@+id/lytOptions"
android:layout_below="@id/imgLine"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<Button
android:id="@+id/btnLogin"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/action_via_email"
android:textColor="@android:color/white"
android:textStyle="bold" />
<Button
android:id="@+id/btnSignUp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/action_sign_up"
android:textColor="@android:color/white"
android:textStyle="bold" />
</FrameLayout>
答案 0 :(得分:1)
试试这个
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="49dp"
android:text="Button" />
</RelativeLayout>
获得这样的输出
答案 1 :(得分:0)
使用垂直LinearLayout
代替......
<LinearLayout
android:layout_width="fill_parent"
android:layout_below="@id/imgLine"
android:layout_height="wrap_content"
android:orientation="vertical" >
<Button
android:id="@+id/btnLogin"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/action_via_email"
android:textColor="@android:color/white"
android:textStyle="bold" />
<Button
android:id="@+id/btnSignUp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/action_sign_up"
android:textColor="@android:color/white"
android:textStyle="bold" />
</LinearLayout>
答案 2 :(得分:0)
通过使用framelayout,您实际上将一个图像放在另一个图像上,而是使用带有按钮宽度和高度的linearlayout作为换行内容,并避免使用按钮的布局权重。 如果这可以解决您的问题,请告诉我
答案 3 :(得分:0)
正如其他人所指出的,关键的答案是使用LinearLayout将按钮定位在彼此旁边。但是,对于“触摸”效果,您需要执行以下一项或多项操作:
我的偏好是将边距和填充设置为零,并将图像设置为您想要的效果:
<LinearLayout
android:layout_width="fill_parent"
android:layout_below="@id/imgLine"
android:layout_height="wrap_content"
android:orientation="vertical" >
<!-- options 1 and 2 -->
<Button
android:id="@+id/btnLogin"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/action_via_email"
android:textColor="@android:color/white"
android:padding="0dp" <!-- Set there to be no space between the content and the surrounding views -->
android:padding="0dp" <!-- Set to be no space int the content area but between the content and the edge of the content area -->
android:textStyle="bold" />
<!-- option 3 -->
<Button
android:id="@+id/btnSignUp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/action_sign_up"
android:textColor="@android:color/white"
android:background="@drawable/my_background"
android:textStyle="bold" />
</LinearLayout>
您需要将my_background定义为可绘制目录或res。您可以对来自http://developer.android.com/guide/topics/graphics/2d-graphics.html的9个补丁图片的部分提供帮助。
答案 4 :(得分:0)
改为使用TableLayout:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TableLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" android:background="@drawable/button_style"/>
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" android:background="@drawable/button_style"/>
</TableRow>
</TableLayout>
为按钮分配一个drawable button_style:
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#38393B"/>
<stroke android:width="0.5dp" android:color="#8aaa"/>
<size android:width="120dp" android:height="80dp" />