1

FrameLayout で 2 つのボタンを上下に追加したいのですが、それらは接触している必要があります。しかし、私はこれを行うことができません。これが私のコードです:

<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>
4

5 に答える 5

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>

このような出力を取得するには

ここに画像の説明を入力

于 2013-04-10T09:10:59.023 に答える
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>
于 2013-04-10T07:26:08.513 に答える
0

他の人が指摘したように、重要な答えは LinearLayout を使用してボタンを隣り合わせに配置することです。ただし、「感動的な」効果を得るには、次の 1 つまたは複数を実行する必要があります。

  1. 各ボタンのパディングを変更します。
  2. 各ボタンの余白を変更します。
  3. ボタンの背景画像をビュー領域の端まで移動するように変更します。

私の好みは、マージンとパディングをゼロに設定し、画像を必要な効果に設定することです。

<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 つのパッチ イメージに関するセクションが役立つ場合があります。

于 2013-04-10T07:46:33.960 に答える
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>

ボタンに描画可能な 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" />

于 2013-04-10T10:01:33.770 に答える