Rotate ImageView source from layout xml file Android Studio
Rotate ImageView source from layout xml file Android Studio
Can use Available Since API Level 11
android:rotation="90"
Final Code to Put,
<ImageView android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:rotation="90"
android:contentDescription="@string/image_divider"
android:paddingBottom="8dp"
android:paddingTop="4dp"
android:scaleType="fitXY"
android:src="@android:drawable/divider_horizontal_textfield" />
Thanks
Posting Komentar untuk "Rotate ImageView source from layout xml file Android Studio"