1
我有兩個問題,每個問題彼此相似。點擊查看圖片和鏈接
首先,我的應用程序從我的web服務器加載圖像。當用戶單擊圖像時,我需要它在某種圖像查看器(您可以放大圖像並平移)中打開圖像。我是否也可以加載圖庫/圖像專輯?
我目前使用Glide library將圖像加載到ImageView
,但是如何在用戶單擊ImageView
時實現圖像查看器?
此外,是否可以使用Glide將較小(縮略圖)圖像加載到ImageView
中,但當用戶單擊並在圖像查看器中打開它時打開全尺寸圖像?
這裏是我的ImageView
:
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
/>
下面是使用滑翔我如何加載圖像到ImageView
:
Glide.with(context)
.load("http://www.website.com/test.png")
.fitCenter()
.into(holder.imageView);
其次,我的應用程序有外部網站鏈接,用戶能夠點擊。我如何在應用程序中打開這些鏈接,而不是在瀏覽器中打開它?有這樣的圖書館嗎?
用'Fragment'或'Activity'在'WebView'中打開鏈接 –