我有一個圖像視圖和一個textView。使圖像視圖看起來在每個設備相同
當我在更大的設備上測試它時,圖像改變了他的位置。
佈局的xml:
<TextView
android:id="@+id/monedas_pow"
android:text="300"
android:textSize="29sp"
android:layout_marginLeft="10dp"
android:textColor="@color/titlecolor"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<ImageView
android:id="@+id/summary_btn"
android:src="@drawable/coin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="525dp"
android:layout_toRightOf="@id/monedas_pow"
android:layout_marginTop="8dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="280dp" />
的[我如何使用複合繪製的,而不是一個包含的ImageView和一個TextView一個的LinearLayout(HTTP可能重複:// stackoverflow.com/questions/8318765/how-do-i-use-a-compound-drawable-instead-of-a-linearlayout-that-contains-an-imag) –
您必須爲不同的設備創建不同的文件夾,其中包含設備樣式,尺寸等。 – HaroldSer
marginBottom是你有的問題。 –