Проблема с видом на изменение ориентации устройства - PullRequest
0 голосов
/ 30 мая 2011

Когда я перехожу в альбомный режим, две нижние кнопки для моей активности не видны. Экран должен автоматически преобразоваться в прокручиваемый. Нужно ли что-то добавить в мой файл XML или манифеста?

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        > 
    <TextView  
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:text="@string/hello"
        />   
    <TextView  
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:text="Text in Hindi->"
        />    
    <TextView
        style="@style/PassageStyle"
        android:id="@+id/hindi"
        android:textSize="30sp"
        android:gravity="center"
        />
    <TextView  
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:text="Corresponding Text in English->"
        />  
    <TextView
        style="@style/PassageStyle"
        android:id="@+id/english"
        android:textSize="30dip"
        android:gravity="center"
        />  
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">      
        <Button
            android:id="@+id/listen_Button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="60dip"
            android:text="@string/listen"
            />
        <Button
            android:id="@+id/slow_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Slow"
            android:layout_marginLeft="30dip"
            android:layout_toRightOf="@id/listen_Button"
            android:layout_alignTop="@id/listen_Button"
        />  
        <Button
            android:id="@+id/voice"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/voice"
            android:layout_alignLeft="@id/listen_Button"
            android:layout_below="@id/listen_Button"
            />
        <Button
            android:id="@+id/next_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Next"
            android:layout_below="@id/slow_button"
            android:layout_alignLeft="@id/slow_button"
            />  
    </RelativeLayout>           

</LinearLayout>

Ответы [ 3 ]

0 голосов
/ 30 мая 2011

Я еще не использовал один, но это должно работать нормально, если вы заверните весь XML в ScrollView.

http://developer.android.com/reference/android/widget/ScrollView.html

0 голосов
/ 30 мая 2011

Если вы хотите, чтобы ваш экран прокручивался, вы должны добавить ScrollView в качестве корневого макета, например:

 <?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_heigth="fill_parent"
    android:layout_width="fill_parent">
    <LinearLayout 
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        > 
    <TextView  
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:text="@string/hello"
        />   
    <TextView  
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:text="Text in Hindi->"
        />    
    <TextView
        style="@style/PassageStyle"
        android:id="@+id/hindi"
        android:textSize="30sp"
        android:gravity="center"
        />
    <TextView  
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:text="Corresponding Text in English->"
        />  
    <TextView
        style="@style/PassageStyle"
        android:id="@+id/english"
        android:textSize="30dip"
        android:gravity="center"
        />  
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">      
        <Button
            android:id="@+id/listen_Button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="60dip"
            android:text="@string/listen"
            />
        <Button
            android:id="@+id/slow_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Slow"
            android:layout_marginLeft="30dip"
            android:layout_toRightOf="@id/listen_Button"
            android:layout_alignTop="@id/listen_Button"
        />  
        <Button
            android:id="@+id/voice"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/voice"
            android:layout_alignLeft="@id/listen_Button"
            android:layout_below="@id/listen_Button"
            />
        <Button
            android:id="@+id/next_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Next"
            android:layout_below="@id/slow_button"
            android:layout_alignLeft="@id/slow_button"
            />  
    </RelativeLayout>           

</LinearLayout>
</ScrollView>
0 голосов
/ 30 мая 2011

Где вы определяете свой ScrollView?

Попробуйте это так:

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

<LinearLayout 
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

 ... other stuff ...

</LinearLayout>

</ScrollView> 
...