2

ボタンと textView の配置に問題があります。私はすでにxmlにtextViewとボタンを持っていますが、それらのすぐ下に別のセットが必要です。しかし、私はそれを追加することができません。ぜひご覧ください。

これがxmlです。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:animateLayoutChanges="true"
    android:background="#FFFFFF">

     <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal|top">
    <com.aavishkaar.quikies.widget.TypedfacedTextViewxmlns:your_namespace="http://schemas.android.com/apk/res/com.aavishkaar.quickies"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:text="Click Here"
        android:id="@+id/textView"
        android:layout_weight="0.6"
        android:textSize="24sp"
        android:textColor="@android:color/black"
        android:gravity="center|left"
        android:layout_marginLeft="15dp"
        your_namespace:typeface="Roboto-Regular.ttf" />

    <Button style="?android:attr/buttonStyleSmall"
        android:id="@+id/blue0"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:text="OFF"
        android:layout_weight="0.2"
        android:layout_gravity="center_vertical"
        android:layout_marginTop="10dp"
        android:layout_marginBottom="10dp"
        android:background="@drawable/switch_bg_holo_light" />

    <Button style="?android:attr/buttonStyleSmall"
        android:id="@+id/blue1"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:text="ON"
        android:layout_weight="0.2"
        android:layout_marginTop="10dp"
        android:layout_marginBottom="10dp"
        android:layout_marginRight="5dp"
        android:background="@drawable/switch_thumb_activated_holo_light"/>
    </LinearLayout>
</LinearLayout>

これはレイアウト デザイン ビューです。

4

2 に答える 2

2

このコードを試して、最初の線形レイアウトの向きを変更してください。デフォルトの線形レイアウトの向きは水平です

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:animateLayoutChanges="true"
      android:background="#FFFFFF"
        android:orientation="vertical">


 <LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal|top">


<com.aavishkaar.quikies.widget.TypedfacedTextView
          xmlns:your_namespace="http://schemas.android.com/apk/res/com.aavishkaar.quickies"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:text="Click Here"
        android:id="@+id/textView"
        android:layout_weight="0.6"
        android:textSize="24sp"
        android:textColor="@android:color/black"
        android:gravity="center|left"
        android:layout_marginLeft="15dp"
        your_namespace:typeface="Roboto-Regular.ttf"
        />

<Button
        style="?android:attr/buttonStyleSmall"
        android:id="@+id/blue0"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:text="OFF"
        android:layout_weight="0.2"
        android:layout_gravity="center_vertical"
        android:layout_marginTop="10dp"
        android:layout_marginBottom="10dp"
        android:background="@drawable/switch_bg_holo_light"

        />

<Button
        style="?android:attr/buttonStyleSmall"
        android:id="@+id/blue1"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:text="ON"
        android:layout_weight="0.2"
        android:layout_marginTop="10dp"
        android:layout_marginBottom="10dp"
        android:layout_marginRight="5dp"
        android:background="@drawable/switch_thumb_activated_holo_light"
        />
</LinearLayout>

  <com.aavishkaar.quikies.widget.TypedfacedTextView               
   xmlns:your_namespace="http://schemas.android.com/apk/res/com.aavishkaar.quickies"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:text="Click Here"
        android:id="@+id/textView"
        android:layout_weight="0.6"
        android:textSize="24sp"
        android:textColor="@android:color/black"
        android:gravity="center|left"
        android:layout_marginLeft="15dp"
        your_namespace:typeface="Roboto-Regular.ttf"
        />

<Button
        style="?android:attr/buttonStyleSmall"
        android:id="@+id/blue0"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:text="OFF"
        android:layout_weight="0.2"
        android:layout_gravity="center_vertical"
        android:layout_marginTop="10dp"
        android:layout_marginBottom="10dp"
        android:background="@drawable/switch_bg_holo_light"

        />

<Button
        style="?android:attr/buttonStyleSmall"
        android:id="@+id/blue1"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:text="ON"
        android:layout_weight="0.2"
        android:layout_marginTop="10dp"
        android:layout_marginBottom="10dp"
        android:layout_marginRight="5dp"
        android:background="@drawable/switch_thumb_activated_holo_light"
        />
</LinearLayout>

</LinearLayout>
于 2013-06-02T12:56:05.443 に答える
1

追加

    android:orientation="vertical"  in first Linear Layour.

追加

    android:orientation="horizontal" in Second Linear Layour.

この回答を無視しない場合は、これが機能することを願っています。私はこれがあまり得意ではありません。

于 2013-06-02T12:48:27.210 に答える