我正在为食谱食谱应用程序开发项目。我面临的问题是,当我在应用程序中输入食谱的说明时。图标随文本一起移动。是否可以使用活动中的 xml 或代码将图标固定在布局中的特定位置?
这是问题的图片:
<android.support.v7.widget.CardView
android:id="@+id/cardViewList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="12dp">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Name"
android:textSize="18sp"
android:textStyle="bold" />
<TableRow
android:id="@+id/trPersonsTimeDetails"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView1"
android:layout_alignParentLeft="true"
android:layout_marginTop="3dp"
android:orientation="horizontal">
<ImageView
android:id="@+id/recipe_icon"
android:layout_width="33dp"
android:layout_height="match_parent"
android:background="@drawable/recipe_1" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Beschreibung"
android:textSize="16dp" />
</TableRow>
<TableRow
android:id="@+id/test"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/trPersonsTimeDetails"
android:layout_alignParentLeft="true"
android:layout_marginTop="3dp"
android:orientation="horizontal">
<ImageView
android:id="@+id/time"
android:layout_width="33dp"
android:layout_height="33dp"
android:background="@drawable/timer" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/trPersonsTimeDetails"
android:text="Zeit"
android:textSize="16dp" />
</TableRow>
</RelativeLayout>
</android.support.v7.widget.CardView>
答案 0 :(得分:2)
对于imageView,您应该使用参数src
而不是background
,对于缩放问题,您需要scaleType="fitCenter"
,如下所示:
<ImageView
android:id="@+id/recipe_icon"
android:layout_width="33dp"
android:layout_height="match_parent"
android:scaleType="fitCenter"
android:src="@drawable/recipe_1" />
答案 1 :(得分:2)