Android:在线性布局中居中两个元素

时间:2017-03-10 18:31:24

标签: android android-linearlayout

我希望两个元素都居中,没有拉伸。

此外,如果体重不那么宽,那就太棒了。

这就是它的样子:

LinearLayout

下面是代码:

core-js

提前谢谢你!

3 个答案:

答案 0 :(得分:0)

尝试这种布局:

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffffff"
    android:orientation="vertical"
    android:weightSum="2">

    <TextView
        android:id="@+id/txtListValue"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:background="#FF1493"
        android:gravity="center_vertical|center_horizontal"
        android:text="163,00"
        android:textColor="#000000"
        android:textSize="30sp" />


    <ImageView
        android:id="@+id/image_order"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:gravity="center_vertical|center_horizontal"
        android:scaleX="0.4"
        android:scaleY="0.4"
        android:src="@mipmap/ic_launcher" />

</LinearLayout>

输出:

enter image description here

答案 1 :(得分:0)

您可以在不使用weightsum ...

的情况下使用以下API
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff"
android:orientation="vertical">

    <TextView
         android:layout_width="match_parent"
         android:layout_height="0dp"
         android:layout_weight="1"
         android:background="#FC226E"
         android:gravity="center"
         android:text="1,00"
         android:textColor="#FFFFFF"
         android:textSize="28sp" />

    <LinearLayout
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:padding="15dp">

        <ImageView
             android:layout_width="match_parent"
             android:layout_height="wrap_content"
             android:gravity="center"
             android:src="@mipmap/ic_launcher" />

   </LinearLayout>
</LinearLayout>

答案 2 :(得分:0)

非常简单,您可以使用父布局本身维护它

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff"
android:orientation="vertical"
android:gravity="center">

<TextView
    android:id="@+id/txtListValue"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#FF1493"
    android:text="163,00"
    android:textColor="#000000"
    android:textSize="30sp" />


<ImageView
    android:id="@+id/image_order"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:src="@mipmap/ic_launcher" />

</LinearLayout>