我有3个水平对齐的片段。我正在使用相对布局 最后一个片段。当我在最后提供一个ImageView时 片段/布局(RelativeLayout)它实际上挤压/缩小了imageview。但 当我使用LineraLayout它没有。如何在RelativeLayout中获得相同的效果。即挤压/收缩组件。任何帮助表示赞赏
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#58595B">
<ImageView
android:id="@+id/imgProfilePhoto"
android:layout_width="250dp"
android:layout_height="250dp"
android:layout_centerInParent="true"
android:background="@drawable/contact_avatar_default_1" />
</RelativeLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:animateLayoutChanges="true">
<FrameLayout
android:id="@+id/container1"
android:layout_width="400dp"
android:layout_height="match_parent"
tools:context="com.sample.MainActivity"
tools:ignore="MergeRootFrame" />
<FrameLayout
android:id="@+id/container2"
android:layout_width="0dp"
android:layout_height="match_parent"
android:background="#E6E6E6"
android:layout_weight="90"
tools:ignore="MergeRootFrame" />
<fragment
android:id="@+id/fragmentContact"
android:name="com.sample.photoFragment"
android:layout_width="0dp"
tools:layout="@layout/fragment_photo"
android:layout_height="match_parent"
android:layout_weight="10" />
答案 0 :(得分:0)
在android:layout_width="match_parent"
中使用ImageView
。希望这项工作。