如何在背景中设置图像,以便在cardview的其他部分中看到?

时间:2017-03-18 10:30:58

标签: android xml android-layout android-cardview

我是android应用程序开发的新手。我在android中做了一个项目。我在后台设置了一个图像,以便在cardview的其他部分看到它。如果有人知道,请分享你的答案。我的XML代码如下

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">

<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/imageView"
    android:background="#FFFFFF"
    android:src="@drawable/images1"/> 
<android.support.v7.widget.CardView
    android:orientation = "vertical"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/RateMe"
            android:text="Rate your experience?"
            android:layout_marginLeft="40dp"
            android:background="#FFFFFF"
            android:textAppearance="@android:style/TextAppearance.Large"/>
        <RatingBar
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/ratingBar"
            android:numStars="5"
            android:layout_marginLeft="40dp"
            android:stepSize="0.1" />
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/Cleaniness"
            android:text="How was cleaniness?"
            android:layout_marginLeft="40dp"
            android:textAppearance="@android:style/TextAppearance.Large"/>
        <RatingBar
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/RateClean"
            android:numStars="5"
            android:layout_marginLeft="40dp"
            android:stepSize="0.1" />
        <EditText
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/Comment"
            android:layout_marginLeft="40dp"
            android:hint="please enter comment here" />
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/bttn"
            android:hint="Submit"
            android:layout_marginLeft="40dp"
            android:layout_gravity="center" />
        </LinearLayout>
    </android.support.v7.widget.CardView></LinearLayout>

2 个答案:

答案 0 :(得分:0)

如果您想让自己的活动透明,请查看此答案 - How do I create a transparent Activity on Android?

答案 1 :(得分:0)

为什么不尝试将LinearLayout设置为所需的颜色,以及使用透明背景的cardView。使用您的代码,你应该有这样的东西

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:orientation="vertical"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:background="@drawable/bg">

<android.support.v7.widget.CardView
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    android:orientation = "vertical"
    android:layout_gravity="center"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    card_view:cardCornerRadius="5dp"
    card_view:cardElevation="5dp"
    card_view:cardBackgroundColor="#55FFFFFF">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/RateMe"
            android:text="Rate your experience?"
            android:layout_marginLeft="40dp"
            android:textAppearance="@android:style/TextAppearance.Large"/>
        <RatingBar
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/ratingBar"
            android:numStars="5"
            android:layout_marginLeft="40dp"
            android:stepSize="0.1" />
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/Cleaniness"
            android:text="How was cleaniness?"
            android:layout_marginLeft="40dp"
            android:textAppearance="@android:style/TextAppearance.Large"/>
        <RatingBar
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/RateClean"
            android:numStars="5"
            android:layout_marginLeft="40dp"
            android:stepSize="0.1" />
        <EditText
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/Comment"
            android:layout_marginLeft="40dp"
            android:hint="please enter comment here" />
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/bttn"
            android:hint="Submit"
            android:layout_marginLeft="40dp"
            android:layout_gravity="center" />
    </LinearLayout>
</android.support.v7.widget.CardView>