2017-11-25 91 views
-1

这里是我的Android工作室电话(我希望它显示) my andriod studio phone 这里是我emulater电话 my emulator phone我模拟器只在我的constraintLayout显示最后图像

2https://i.stack.imgur.com/mqvPC.png`

<ImageView 
    android:id="@+id/imageView15" 
    android:layout_width="90dp" 
    android:layout_height="24dp" 
    android:src="@mipmap/brownhole" 
    tools:layout="editor_absoluteX=" 
    tools:layout_editor_absoluteX="90dp" 
    tools:layout_editor_absoluteY="154dp" /> 

<ImageView 
    android:id="@+id/imageView21" 
    android:layout_width="90dp" 
    android:layout_height="24dp" 
    android:src="@mipmap/bluehole" 
    tools:layout_editor_absoluteX="180dp" 
    tools:layout_editor_absoluteY="154dp" /> 

<ImageView 
    android:id="@+id/imageView16" 
    android:layout_width="90dp" 
    android:layout_height="24dp" 
    android:src="@mipmap/redhole" 
    tools:layout_editor_absoluteX="270dp" 
    tools:layout_editor_absoluteY="154dp" /> 

<ImageView 
    android:id="@+id/imageView18" 
    android:layout_width="90dp" 
    android:layout_height="24dp" 
    android:src="@mipmap/greenhole" 
    tools:layout_editor_absoluteX="0dp" 
    tools:layout_editor_absoluteY="471dp" /> 

<ImageView 
    android:id="@+id/imageView19" 
    android:layout_width="90dp" 
    android:layout_height="24dp" 
    android:src="@mipmap/brownhole" 
    tools:layout_editor_absoluteX="90dp" 
    tools:layout_editor_absoluteY="471dp" /> 

<ImageView 
    android:id="@+id/imageView20" 
    android:layout_width="90dp" 
    android:layout_height="24dp" 
    android:src="@mipmap/redhole" 
    tools:layout_editor_absoluteX="180dp" 
    tools:layout_editor_absoluteY="471dp" /> 

<ImageView 
    android:id="@+id/imageView17" 
    android:layout_width="90dp" 
    android:layout_height="24dp" 
    android:src="@mipmap/bluehole" 
    tools:layout_editor_absoluteX="270dp" 
    tools:layout_editor_absoluteY="471dp" />`ays on the emulator on the top left screen 

my andriod studio phone

my emulator phone shows only the last image on the constraintLayout

+0

请分享相关的代码。并看看:https://stackoverflow.com/help/how-to-ask –

回答

0

你有添加约束到activity_main.xml中所有的元素,如果你正在使用约束布局 对于 Do As I shown

如果不加约束每Elemet将跃升到(0,0)

相关问题