ImageView中的TextView

时间:2017-06-04 14:39:27

标签: android

我有这张照片是意大利车牌的模板: italian plate

我的应用管理车辆。我想在RecyclerView CardView中显示所有用户的车辆,其中每个CardView包含ImageView(显示上一张图片)和TextView },其中包含车牌。但是,与TextView中显示的图像相比,我怎样才能将ImageView置于正确的位置?而且,我认为最糟糕的事情是,如何正确地为所有屏幕分辨率放置TextView

3 个答案:

答案 0 :(得分:1)

我已尝试过示例代码..

<强> RES /布局/ numberplate.xml

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="30dp">

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/background"
    android:orientation="horizontal">

<LinearLayout
    android:layout_margin="10dp"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal">

    <ImageView
        android:layout_width="46dp"
        android:layout_height="46dp"
        android:background="@mipmap/ic_launcher" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="46dp"
        android:layout_marginLeft="20dp"
        android:gravity="center"
        android:text="Number"
        android:textSize="25dp" />
    </LinearLayout>
</LinearLayout>
</LinearLayout>

<强> RES /抽拉/ background.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#d0d0d0" />
<corners android:radius="5dp" />
<stroke android:color="#202020" android:width="3dp"/>
</shape>

它看起来如何。  enter image description here

您可以更改值以符合您的需要。 希望这会有所帮助..

答案 1 :(得分:1)

您可以将两个视图放在RelativeLayout中并相互叠加。例如,

<?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="wrap_content"
     android:padding="30dp">
     <ImageView
         android:layout_width="46dp"
         android:layout_height="46dp"
         android:layout_gravity="center"
         android:background="@drawable/your_numberplate_image" />
     <TextView
         android:layout_width="46dp"
         android:layout_height="46dp"
         android:layout_marginLeft="10dp"
         android:gravity="center"
         android:text="Number"
         android:textSize="25dp" />
</RelativeLayout>

答案 2 :(得分:0)

重叠两个视图的最佳方法是使用FrameLayout作为父级而不是使用frameLayout子级上的layout_gravity和margin属性设置其位置