0
我有一個imageView應該顯示來自url的配置文件圖標。 但它可能發生的URL沒有圖像,在這種情況下,我想有一個下面的文本視圖。 如果ImageView的是 「空」,用戶應B,能夠看到的文字n個TextView的android studio在imageview下方製作一個textView,如果imageview沒有圖像可見
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.user.lolstats.DisplayDataActivity">
<de.hdodenhof.circleimageview.CircleImageView xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/imgRound"
android:layout_width="125dp"
android:layout_height="125dp"
android:layout_centerHorizontal="true"
android:layout_marginTop="10dp"
android:background="#00000000"
android:foregroundGravity="center"
android:visibility="visible"
app:border_color="#ffffff"
app:border_width="10dp" />
<TextView
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_above="@+id/TVsummoerName"
android:layout_centerHorizontal="true"
android:layout_marginBottom="11dp"
android:gravity="center"
android:text="If you can read this your SummonerIcon isn't implemented yet." />
<TextView
android:id="@+id/TVsummoerName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_below="@id/imgRound"
android:gravity="center" />
</RelativeLayout>
使用LinearLayout可以更容易隱藏/顯示視圖。 –
但我無法設置它不可見它必須在那裏 – motschel123
然後保持它wrap_content並且不設置任何文本,如果圖像可用。如果圖片不可用,請將文字設置爲該圖片。 –