0

Я разрабатываю простое мобильное приложение. Проблема заключается в ландшафтной ориентации. Он отлично работает на виртуальном устройстве на затмении, а в ландшафтном режиме отображает все кнопки. Но когда я запускаю приложение на своем мобильном устройстве в ландшафтном режиме, я все еще не показываю все кнопки, как и должно быть, и последняя кнопка теряется, но на виртуальном устройстве она работает нормально и отображает все кнопки в виде таблицы. Ниже мой код. Пожалуйста, проверь это.Android-приложение, работающее на виртуальном устройстве, но не на мобильном устройстве

My Mobile Device Android версия - 2.3.6

Manifest.xml Код

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="org.example.sudoku1" 
    android:versionCode="1" 
    android:versionName="1.0" > 

    <uses-sdk 
     android:minSdkVersion="8" 
     android:targetSdkVersion="17" /> 

    <application 
     android:allowBackup="true" 
     android:icon="@drawable/ic_launcher" 
     android:label="@string/app_name" 
     android:theme="@style/AppTheme" > 
     <activity 
      android:name="org.example.sudoku1.Sudoku" 
      android:configChanges="orientation|keyboardHidden" 

      android:label="@string/app_name" > 
      <intent-filter> 
       <action android:name="android.intent.action.MAIN" /> 

       <category android:name="android.intent.category.LAUNCHER" /> 
      </intent-filter> 
     </activity> 
    </application> 

</manifest> 

Рез/макет/activity_sudoku.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:padding="30dip" 
    android:orientation="horizontal" > 
    <LinearLayout 
    android:orientation="vertical" 
android:layout_height="wrap_content" 
android:layout_width="fill_parent" 
android:layout_gravity="center"> 

    <TextView 
     android:id="@+id/textView1" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:layout_gravity="center" 
     android:layout_marginBottom="25dip" 
     android:text="@string/main_title" /> 

    <Button 
     android:id="@+id/button1" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:text="@string/continue_label" /> 

    <Button 
     android:id="@+id/button2" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 

     android:layout_marginTop="21dp" 
     android:text="@string/new_game_label" /> 

    <Button 
     android:id="@+id/button3" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 

     android:layout_marginTop="20dp" 
     android:text="@string/about_label" /> 

    <Button 
     android:id="@+id/button4" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:layout_marginTop="29dp" 
     android:text="@string/exit_label" /> 
</LinearLayout> 
</LinearLayout> 

(ДЛЯ альбомной) Рез/layout-land/activity_sudoku.xml

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:padding="15dip" 
    android:orientation="horizontal" > 
    <LinearLayout 
     android:orientation="vertical" 
    android:layout_height="wrap_content" 
    android:layout_width="fill_parent" 
    android:layout_gravity="center" 
    android:paddingLeft="20dip" 
    android:paddingRight="20dip"> 
     <TextView 
     android:text="@string/main_title" 
     android:layout_height="wrap_content" 
     android:layout_width="wrap_content" 
     android:layout_gravity="center" 
     android:layout_marginBottom="20dip" 
     android:textSize="24.5sp" /> 
     <TableLayout 
      android:layout_height="wrap_content" 
      android:layout_width="wrap_content" 
      android:layout_gravity="center" 
      android:stretchColumns="*"> 

     <TableRow> 
     <Button 
     android:id="@+id/button1" 
     android:text="@string/continue_label" /> 
     <Button 
     android:id="@+id/button2" 
     android:text="@string/new_game_label" /> 
     </TableRow> 

     <TableRow> 
     <Button 
     android:id="@+id/button3" 
     android:text="@string/about_label" /> 
     <Button 
     android:id="@+id/button4" 
     android:text="@string/exit_label" /> 
     </TableRow> 

     </TableLayout> 
     </LinearLayout> 
     </LinearLayout> 
+0

, на котором эмулятор тестирует и на каком реальном устройстве вы тестируете? – Goofy

+0

Вы должны проверить разрешение своего эмулятора и устройства. Кнопка потеряна, потому что для ее отображения недостаточно места. Попробуйте использовать прокрутку или переставить кнопки в соответствии с размером экрана. –

+0

@Goofy Я использую ANDROID «Target = Andriod 4.2.2 (уровень API 17), разрешение экрана 240x320". Для мобильного устройства я использую samsung galaxy y GT-S6102 –

ответ

1

попробуйте android:layout_width="wrap_content" в теге тега

+0

сделал это все еще не работает –

Смежные вопросы