2017-10-08 15 views
-1

私はAndroid Studio 2.3.3を使用してアプリケーションを作成しています。Android StudioのImageViewのサイズを増やす

Layout

これは私のOnePlus 2レイアウトにテストする場合、私は、しかし、すべてのデバイスで見てみたい方法です以下のようになります:次のように私は、制約レイアウトを使用して構成されたレジスタページを持っている

Layout

私のデバイスでわかるように、最後のEditTextとボタンの間には白い空白があります。

イメージビューのXMLプロパティ

android:id="@+id/imageProfile" 
    android:layout_width="match_parent" 
    android:layout_height="150dp" 
    android:layout_marginBottom="8dp" 
    android:layout_marginEnd="16dp" 
    android:layout_marginLeft="16dp" 
    android:layout_marginRight="16dp" 
    android:layout_marginStart="16dp" 
    android:layout_marginTop="8dp" 
    android:adjustViewBounds="false" 
    android:cropToPadding="false" 
    android:src="@mipmap/ic_launcher" 
    app:civ_border_color="#FF000000" 
    app:civ_border_width="2dp" 
    app:layout_constraintBottom_toTopOf="@+id/btnRegister" 
    app:layout_constraintLeft_toLeftOf="parent" 
    app:layout_constraintRight_toRightOf="parent" 
    app:layout_constraintTop_toBottomOf="@+id/txtPasswordConfirm" 
    app:layout_constraintVertical_bias="0.5" 

私のImageViewのは、おそらく原因で、設定された高さに設定されているが、どのように私はそれはモミ大画面を調整するのですか?

フォルダ構造

image

どのように私はこの問題の解決については行くのですか?どんな助けもありがとうございます。 ありがとうございます。このよう

+0

それはあなたの完全なコードをポストすることは常に良いでしょう。心配しないで、誰もそれを盗むつもりはない! – mrid

+1

ちょうど簡潔にしようとしていたhaha –

答えて

1

android:layout_width="0dp" 
android:layout_height="0dp" 
android:adjustViewBounds="true" 
android:scaleType="fitCenter" 
+0

完璧、ありがとう。 –

関連する問題