私はGridlayout
Androidを初めて使用しますが、プレビュー画面では問題なく見えるレイアウトを作成しますが、実際のデバイスで実行すると、すべてのアイテムが圧縮され、画面の左上に配置されます
このレイアウトは、android studio または eclipse でプレビューを表示し、すべてのアイテムが均等に引き伸ばされているか、幅が等しい場合に最適ですが、実際のデバイスではレイアウトの左側に圧縮されます。
私のxmlは次のとおりです。このエラーを整理するのに助けが必要です:-
<?xml version="1.0" encoding="utf-8"?>
<GridLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="5dp"
android:paddingTop="5dp"
android:useDefaultMargins="true"
android:background="@drawable/backgournd_cancel"
android:columnCount="4">
<TextView
style="@style/style_textView_marquee"
android:layout_columnSpan="4"
android:text="Vikramaa" />
<ImageView
style="@style/style_imageView"
android:layout_columnSpan="1"
android:layout_columnWeight="1"
android:src="@drawable/ic_launcher" />
<ImageView
style="@style/style_imageView"
android:layout_columnSpan="1"
android:layout_columnWeight="1"
android:src="@drawable/edit_pressed" />
<ImageView
style="@style/style_imageView"
android:layout_columnSpan="1"
android:layout_columnWeight="1"
android:src="@drawable/heart_normal" />
<ImageView
style="@style/style_imageView"
android:layout_columnSpan="1"
android:layout_columnWeight="1"
android:src="@drawable/open_pressed" />
</GridLayout>