如何设置imageView的布局参数以获得类似的内容?
谢谢!
答案 0 :(得分:2)
我准备了一个简单的黑客解决方案。
转储View
并将View
分配给它。
<View
android:id="@+id/view1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@id/view1"
android:layout_centerHorizontal="true"
android:src="@drawable/ic_launcher" />
希望这可以帮到你...欢迎任何查询:)