Android应用程序没有显示完整的三星S3迷你

时间:2016-01-03 01:13:03

标签: android android-studio apk

我是Android的新手,正在开发我的第一个应用程序,这是来自在线课程项目。事实上,在Android Studio上应用程序工作正常,但我构建了apk文件来测试它在我的手机上(三星galaxy s3 mini)。在设备上,应用程序未显示完整,因为它缺少编辑文本和布局底部的按钮。我附加了两个屏幕截图,第一个在模拟器上运行的应用程序,以及在我的智能手机上运行的应用程序。

在模拟器中运行的应用程序:

App running in the emulator

在智能手机上运行的应用程序:

App running on the smartphone

布局代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="10dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.linfosoft.hangdroid.GameActivity"
tools:showIn="@layout/activity_game">

<ImageView
android:layout_width="wrap_content"
android:layout_height="350dp"
android:id="@+id/imageView"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:src="@drawable/hangdroid_0"
android:layout_marginTop="20dp" />

<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:baselineAligned="false"
android:background="@drawable/gradient_background"
android:layout_below="@+id/imageView"
android:layout_centerHorizontal="true"
android:id="@+id/layoutAddLetter"
android:layout_marginTop="90dp">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Ingresa letra"
android:id="@+id/textView2"
android:layout_gravity="center_vertical"
android:layout_marginLeft="40dp" />

<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/editText"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:maxLength="1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Revisar"
android:id="@+id/button2"
android:onClick="introduceLetter" />
</LinearLayout>

<LinearLayout
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/imageView"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="false"
android:layout_alignParentTop="false"
android:layout_marginTop="20dp"
android:id="@+id/layoutLetters">

</LinearLayout>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:id="@+id/textView7"
android:layout_marginTop="150dp"
android:layout_marginLeft="20dp"
android:textColor="@color/red" />


</RelativeLayout>

2 个答案:

答案 0 :(得分:0)

将您的xml代码放在ScrolView中:

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


    your xml

</ScrollView>

或在布局中添加重量:

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

</LinearLayout>

答案 1 :(得分:0)

你的Hangman图片真的很高,因为它的值为350dp

请检查此代码:

 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:app="http://schemas.android.com/apk/res-auto"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:paddingBottom="10dp"
 app:layout_behavior="@string/appbar_scrolling_view_behavior"
 tools:context="com.linfosoft.hangdroid.GameActivity"
 tools:showIn="@layout/activity_game">

 <RelativeLayout
  android:layout_width="match_parent"
  android:layout_height="match_parent">

<ImageView
 android:layout_width="wrap_content"
 android:layout_height="350dp"
 android:id="@+id/imageView"
 android:layout_alignParentTop="true"
 android:layout_centerHorizontal="true"
 android:src="@drawable/hangdroid_0"
 android:layout_marginTop="20dp" />

<LinearLayout
 android:orientation="horizontal"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:baselineAligned="false"
 android:background="@drawable/gradient_background"
 android:layout_below="@+id/imageView"
 android:layout_centerHorizontal="true"
 android:id="@+id/layoutAddLetter"
 android:layout_marginTop="90dp">

 <TextView
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:textAppearance="?android:attr/textAppearanceLarge"
 android:text="Ingresa letra"
 android:id="@+id/textView2"
 android:layout_gravity="center_vertical"
 android:layout_marginLeft="40dp" />

 <EditText
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:id="@+id/editText"
 android:layout_marginLeft="20dp"
 android:layout_marginRight="20dp"
 android:maxLength="1" />
 <Button
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:text="Revisar"
 android:id="@+id/button2"
 android:onClick="introduceLetter" />
 </LinearLayout>

 <LinearLayout
 android:orientation="horizontal"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:layout_below="@+id/imageView"
 android:layout_centerHorizontal="true"
 android:layout_alignParentBottom="false"
 android:layout_alignParentTop="false"
 android:layout_marginTop="20dp"
 android:id="@+id/layoutLetters">

 </LinearLayout>

 <TextView
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:textAppearance="?android:attr/textAppearanceMedium"
 android:id="@+id/textView7"
 android:layout_marginTop="150dp"
 android:layout_marginLeft="20dp"
 android:textColor="@color/red" />

 </RelativeLayout>
 <ScrollView>

如您所见,我使用了ScrollView,但只有当设备没有足够的空间来接收屏幕上的所有内容时,才会启用滚动视图。

在另一种情况下,它就像任何其他静态布局一样。

这并不意味着你会在每台设备上滚动它或者你的游戏不那么有吸引力; - )

你可以将图片的高度更改为wrap_content,我想如果本教程是按照值创建这个高度的作者,因为现实中的图片比那个大得多高度为350dp