0

相対およびLinearLayoutでスクロールを作成しようとしていますが、機能しませんか?私はAndroid用の開発に不慣れですいくつかのパラメータがありません

<LinearLayout
    android:id="@+id/contentSobre"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <RelativeLayout
        android:id="@+id/imageContent"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <ImageView
            android:id="@+id/structImageOne"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:src="@drawable/exemple_sobre" />

        <ImageView
            android:id="@+id/structImageTwo"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_alignParentTop="true"
            android:src="@drawable/exemple_sobre" />
    </RelativeLayout>

    <TextView
        android:id="@+id/titleSobre"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:textSize="20sp"
        android:textColor="#53390e" 
        android:text="SANTO GRÃO - OSCAR FREIRE" />


    <TextView
        android:id="@+id/numberContact"
        android:layout_marginTop="3dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="10sp"
        android:textColor="#565656" 
        android:text="TELEFONE(s): (11) 3082-9969" />

    <TextView
           android:id="@+id/descriptionSobre"
           android:textSize="13sp"
           android:textColor="#4a4a4a"
           android:layout_marginTop="10dp"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:maxLines="200"
           android:singleLine="false"             
           android:text="it does not ghave any brea this is a very long text. so long that it does not it does not ghave any brea this is a very long text. so long that it does not it does not ghave any brea this is a very long text. so long that it does not it does not ghave any brea this is a very long text. so long that it does not it does not ghave any brea this is a very long text. so long that it does not it does not ghave any brea this is a very long text. so long that it does not ghave any brea this is a very long text. so long that it does not ghave any brea  this is a very long text. so long that it does not ghave any brea this is a very long text. so long that it does not ghave any brea this is a very long text. so long that it does not ghave any brea this is a very long text. so long that it does not ghave any brea this is a very long text. so long that it does not ghave any brea this is a very long text. so long that it does not ghave any brea" />

    <RelativeLayout
        android:id="@+id/buttonContent"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp" >


        <ImageButton
            android:id="@+id/buttonCall"
            android:layout_width="97dp"
            android:layout_height="30dp"
            android:scaleType="fitEnd"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:background="@android:color/transparent"
            android:src="@drawable/button_call_sobre" />        

        <ImageButton
            android:id="@+id/buttonMaps"
            android:layout_width="97dp"
            android:layout_height="30dp"
            android:scaleType="fitEnd"
            android:layout_marginLeft="10dp"
            android:background="@android:color/transparent"
            android:layout_toRightOf="@+id/buttonCall"
            android:src="@drawable/button_maps_sobre" />

        <ImageButton
            android:id="@+id/buttonTwitter"
            android:layout_width="34dp"
            android:layout_height="34dp"
            android:layout_alignParentRight="true"
            android:layout_alignParentTop="true"
            android:background="@android:color/transparent"
            android:src="@drawable/button_twitter"
            android:onClick="onTouchMenu" />

        <ImageButton
            android:id="@+id/buttonFacebook"
            android:layout_width="34dp"
            android:layout_height="34dp"
            android:layout_toLeftOf="@+id/buttonTwitter"
            android:background="@android:color/transparent"
            android:src="@drawable/button_facebook"
            android:onClick="onTouchMenu" />

    </RelativeLayout>
</LinearLayout>

相対およびLinearLayoutでスクロールを作成しようとしていますが、機能しませんか?私はAndroid用の開発に不慣れですいくつかのパラメータがありません

4

6 に答える 6

1

質問は明確ではありません...しかし、線形レイアウトをスクロールする必要がある場合は、scrollviewでラップする必要があります..それが必要ですか?

于 2013-01-07T13:49:56.533 に答える
1

トップラッパーレイアウトとしてScrollViewを使用する必要があります。ScrollViewは垂直スクロールのみをサポートします。水平スクロールには、を使用しますHorizontalScrollView

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
> 
   <LinearLayout>
        <RelativeLayout>
        </RelativeLayout>
        <RelativeLayout>
        </RelativeLayout>
   </LinearLayout> 

</ScrollView>
于 2013-01-07T13:53:26.477 に答える
0

スクランブル可能なコンテンツの周りにScrollViewを追加する必要があります。

于 2013-01-07T13:47:37.650 に答える
0

パラメータが不足していません。ScrollViewを使用する必要があります。

于 2013-01-07T13:47:48.680 に答える
0

一番上のレイアウトをScrollViewとして作成します。ScrollViewは、ユーザーがスクロールできるビュー階層のレイアウトコンテナーであり、物理的な表示よりも大きくすることができます。

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>

    Your other layout goes here and remember it can take only one child


</ScrollView>
于 2013-01-07T13:47:58.410 に答える
0

トップレベルのレイアウトをScrollViewにするだけです。ScrollViewは、ユーザーがスクロールできるビュー階層のレイアウトコンテナーであり、物理的な表示よりも大きくすることができます。

 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        >

            <!-- Put everything you already have here -->

    </ScrollView>
于 2013-01-07T13:55:25.440 に答える