簡體   English   中英

Android-修復圖標的位置

[英]Android - Fix Position of Icon

我有兩個RelativeLayouts ,每個都包含一個ImageView和一個TextView 在點擊一個TextView ,的大小TextView增加,其他的大小Textview降低。 但是, ImageView的位置也會發生變化。我希望Image固定不分textview的大小。 應該進行哪些更改?

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
             android:id="@+id/bb_bottom_bar_outer_container"
             android:layout_width="match_parent"
             android:layout_height="60dp"
             android:background="@drawable/float_common"
             android:clickable="true">

    <LinearLayout
        android:id="@+id/btn_updatenow"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/background_grey"
        android:orientation="horizontal"
        android:weightSum="3">

        <RelativeLayout
            android:id="@+id/float_layout_home"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:orientation="vertical"
            android:paddingTop="2dp">

            <ImageView
                android:id="@+id/float_image_home"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentTop="true"
                android:layout_centerHorizontal="true"
                android:layout_marginTop="@dimen/margin_6"
                android:background="@drawable/float_home_onclick"
            />

            <TextView
                android:id="@+id/float_text_home"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="true"
                android:layout_centerHorizontal="true"
                android:paddingBottom="@dimen/margin_10"
                android:text="@string/home"
                android:textColor="@color/text_mid_grey"
            />
        </RelativeLayout>

        <RelativeLayout
            android:id="@+id/float_layout_offers"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:gravity="center"
            android:orientation="vertical"
            android:paddingTop="2dp">

            <ImageView
                android:id="@+id/float_offers"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentTop="true"
                android:layout_centerHorizontal="true"
                android:layout_marginTop="@dimen/margin_6"
            />

            <TextView
                android:id="@+id/float_text_offers"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="true"
                android:layout_centerHorizontal="true"
                android:paddingBottom="@dimen/margin_10"
                android:text="@string/offers"
                android:textColor="@color/text_mid_grey"
            />
        </RelativeLayout>
    </LinearLayout>

</FrameLayout>

嘗試將2個RelativeLayout的android:layout_width設置為0dp。

當Linearlayout內部包含許多視圖並且將layout_weight設置為1時,將使用layout_height或layout_width = 0dp,以便為兩個視圖占用相等的空間。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM