图片走出去帧的运行后的apk

问题描述:

here is xml code图片走出去帧的运行后的apk

at android studio it seems like everything is ok. but after running the apk.

+1

请将您的XML代码到后身体并通过添加4尾随空间格式化。另外,请阅读https://www.*.com/help/how-to-ask以了解如何提出问题/现在它的质量很低,可能会被关闭或删除。 – SteveFest

你可能会寻找预览不同的屏幕尺寸比手机的设备。

要在所有设备中将图像均分为3部分,可以使用GridView/GridLayout或使用带有权重的LinearLayout。

试试这个:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:orientation="vertical" 
android:weightSum="3" > 

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="0dp" 
    android:layout_weight="1" 
    android:orientation="horizontal" 
    android:weightSum="3" > 

    <ImageButton 
     android:layout_width="0dp" 
     android:layout_height="fill_parent" 
     android:layout_weight="1" 
     android:src="@drawable/ic_launcher" /> 

    <ImageButton 
     android:layout_width="0dp" 
     android:layout_height="fill_parent" 
     android:layout_weight="1" 
     android:src="@drawable/ic_launcher" /> 

    <ImageButton 
     android:layout_width="0dp" 
     android:layout_height="fill_parent" 
     android:layout_weight="1" 
     android:src="@drawable/ic_launcher" /> 
</LinearLayout> 

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="0dp" 
    android:layout_weight="1" 
    android:orientation="horizontal" 
    android:weightSum="3" > 

    <ImageButton 
     android:layout_width="0dp" 
     android:layout_height="fill_parent" 
     android:layout_weight="1" 
     android:src="@drawable/ic_launcher" /> 

    <ImageButton 
     android:layout_width="0dp" 
     android:layout_height="fill_parent" 
     android:layout_weight="1" 
     android:src="@drawable/ic_launcher" /> 

    <ImageButton 
     android:layout_width="0dp" 
     android:layout_height="fill_parent" 
     android:layout_weight="1" 
     android:src="@drawable/ic_launcher" /> 
</LinearLayout> 

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="0dp" 
    android:layout_weight="1" 
    android:orientation="horizontal" 
    android:weightSum="3" > 

    <ImageButton 
     android:layout_width="0dp" 
     android:layout_height="fill_parent" 
     android:layout_weight="1" 
     android:src="@drawable/ic_launcher" /> 

    <ImageButton 
     android:layout_width="0dp" 
     android:layout_height="fill_parent" 
     android:layout_weight="1" 
     android:src="@drawable/ic_launcher" /> 

    <ImageButton 
     android:layout_width="0dp" 
     android:layout_height="fill_parent" 
     android:layout_weight="1" 
     android:src="@drawable/ic_launcher" /> 
</LinearLayout>