0

テキストを使用して目的のレイアウトを表現しようとします。

株式名

==========

シンボル | スコア

グーグ | 76

シンボルGOOGは、それらをグループ化するために単一の垂直線形レイアウトにする必要があり、それらは左側のスコアに配置する必要があり、76もそれらをグループ化する単一の垂直線形レイアウトにする必要がありますが、それらは右側に配置する必要があります。

これが私のレイアウトです。以下に示す方法でそれを達成できました。誰かが私が間違っていることを理解していますか? (これはレイアウトの関連部分のみです)

<?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:orientation="vertical" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/stock_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="40dp" />
</LinearLayout>

<RelativeLayout
    android:id="@+id/relative_layout"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:orientation="vertical" >

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/stock_symbol" />

        <TextView
            android:id="@+id/stock_symbol"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="30dp" />
    </LinearLayout>


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:orientation="vertical" >

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/stock_score" />

        <TextView
            android:id="@+id/stock_score"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="30dp" />
    </LinearLayout>
</RelativeLayout> 

私も使用android:layout_alignLeft="@+id/relative_layout"してみandroid:layout_alignRight="@+id/relative_layout"ましたLinearLayoutが、成功しませんでした。

4

1 に答える 1

0

チャットルーム「Android-People」の @RobinHood のおかげでエラーが見つかりました。

内部の LinearLayouts を RelativeLayout に置き換える必要があり、内部の RelariveLayout は android:layout_width="fill_parent" から android:layout_width="wrap_content" に変更する必要があります

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

<LinearLayout
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/stock_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="40dp" />
</LinearLayout>

<RelativeLayout        
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"        
    android:orientation="horizontal" >

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"            
        android:orientation="vertical" >

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/stock_symbol" />

        <TextView
            android:id="@+id/stock_symbol"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="30dp" />
    </RelativeLayout>

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:orientation="vertical" >

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/stock_score" />

        <TextView
            android:id="@+id/stock_score"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="30dp" />
    </RelativeLayout>
</RelativeLayout>
于 2012-06-01T12:56:22.843 に答える