在此链接中: http://mynameart.com/create-card/lovely-couple-made-for-each-other 他的名字在这里,她的名字在这里TextView就在那里。所以我想要一个适用于所有设备的相同UI。 那么我如何在Android中实现相同的用户界面呢?
答案 0 :(得分:1)
你可以试试这个:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="vertical">
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dp"
android:text="His Name Here"
android:textSize="20sp" />
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:background="@mipmap/ic_launcher" />
</TableRow>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/left_margin"
android:padding="10dp"
android:text="Her Name Here"
android:textSize="20sp" />
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="10dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="lovely couple made for eachother"
android:textSize="20sp" />
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:background="@mipmap/ic_launcher" />
</TableRow>
</LinearLayout>
</RelativeLayout>
注意:对于@dimen/left_margin
,您需要获取不同尺寸的尺寸。