summaryrefslogtreecommitdiff
path: root/java/com/android/incallui/sessiondata
diff options
context:
space:
mode:
authorEric Erfanian <erfanian@google.com>2017-06-19 11:26:01 -0700
committerEric Erfanian <erfanian@google.com>2017-06-19 11:30:45 -0700
commit2f1c7586bcce334ca69022eb8dc6d8965ceb6a05 (patch)
treebf00ada449ee3de31ec983a14e84159200aa18c2 /java/com/android/incallui/sessiondata
parent3d0ca68e466482971a4cf46576c50cb2bd42bcb5 (diff)
Update AOSP Dialer source from internal google3 repository at
cl/159428781. Test: make, treehugger This CL updates the AOSP Dialer source with all the changes that have gone into the private google3 repository. This includes all the changes from cl/152373142 (4/06/2017) to cl/159428781 (6/19/2017). This goal of these drops is to keep the AOSP source in sync with the internal google3 repository. Currently these sync are done by hand with very minor modifications to the internal source code. See the Android.mk file for list of modifications. Our current goal is to do frequent drops (daily if possible) and eventually switched to an automated process. Change-Id: Ie60a84b3936efd0ea3d95d7c86bf96d2b1663030
Diffstat (limited to 'java/com/android/incallui/sessiondata')
-rw-r--r--java/com/android/incallui/sessiondata/MultimediaFragment.java17
-rw-r--r--java/com/android/incallui/sessiondata/res/layout/fragment_composer_image.xml6
2 files changed, 16 insertions, 7 deletions
diff --git a/java/com/android/incallui/sessiondata/MultimediaFragment.java b/java/com/android/incallui/sessiondata/MultimediaFragment.java
index 85a60b6e3..3e6cdbbe0 100644
--- a/java/com/android/incallui/sessiondata/MultimediaFragment.java
+++ b/java/com/android/incallui/sessiondata/MultimediaFragment.java
@@ -107,6 +107,7 @@ public class MultimediaFragment extends Fragment implements AvatarPresenter {
public View onCreateView(
LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, @Nullable Bundle bundle) {
if (isSpam) {
+ LogUtil.i("MultimediaFragment.onCreateView", "show spam layout");
return layoutInflater.inflate(R.layout.fragment_spam, viewGroup, false);
}
@@ -116,23 +117,30 @@ public class MultimediaFragment extends Fragment implements AvatarPresenter {
if (hasMap && MapsComponent.get(getContext()).getMaps().isAvailable()) {
if (hasImage) {
if (hasSubject) {
+ LogUtil.i("MultimediaFragment.onCreateView", "show text, image, location layout");
return layoutInflater.inflate(
R.layout.fragment_composer_text_image_frag, viewGroup, false);
} else {
+ LogUtil.i("MultimediaFragment.onCreateView", "show image, location layout");
return layoutInflater.inflate(R.layout.fragment_composer_image_frag, viewGroup, false);
}
} else if (hasSubject) {
+ LogUtil.i("MultimediaFragment.onCreateView", "show text, location layout");
return layoutInflater.inflate(R.layout.fragment_composer_text_frag, viewGroup, false);
} else {
+ LogUtil.i("MultimediaFragment.onCreateView", "show location layout");
return layoutInflater.inflate(R.layout.fragment_composer_frag, viewGroup, false);
}
} else if (hasImage) {
if (hasSubject) {
+ LogUtil.i("MultimediaFragment.onCreateView", "show text, image layout");
return layoutInflater.inflate(R.layout.fragment_composer_text_image, viewGroup, false);
} else {
+ LogUtil.i("MultimediaFragment.onCreateView", "show image layout");
return layoutInflater.inflate(R.layout.fragment_composer_image, viewGroup, false);
}
} else {
+ LogUtil.i("MultimediaFragment.onCreateView", "show text layout");
return layoutInflater.inflate(R.layout.fragment_composer_text, viewGroup, false);
}
}
@@ -155,11 +163,11 @@ public class MultimediaFragment extends Fragment implements AvatarPresenter {
((TextView) view.findViewById(R.id.spam_text)).setText(R.string.spam_message_text);
}
- TextView messageText = (TextView) view.findViewById(R.id.answer_message_text);
+ TextView messageText = view.findViewById(R.id.answer_message_text);
if (messageText != null) {
messageText.setText(getSubject());
}
- ImageView mainImage = (ImageView) view.findViewById(R.id.answer_message_image);
+ ImageView mainImage = view.findViewById(R.id.answer_message_image);
if (mainImage != null) {
Glide.with(this)
.load(getImageUri())
@@ -185,6 +193,7 @@ public class MultimediaFragment extends Fragment implements AvatarPresenter {
Target<Drawable> target,
DataSource dataSource,
boolean isFirstResource) {
+ LogUtil.enterBlock("MultimediaFragment.onResourceReady");
view.findViewById(R.id.loading_spinner).setVisibility(View.GONE);
return false;
}
@@ -192,7 +201,7 @@ public class MultimediaFragment extends Fragment implements AvatarPresenter {
.into(mainImage);
mainImage.setClipToOutline(true);
}
- FrameLayout fragmentHolder = (FrameLayout) view.findViewById(R.id.answer_message_frag);
+ FrameLayout fragmentHolder = view.findViewById(R.id.answer_message_frag);
if (fragmentHolder != null) {
fragmentHolder.setClipToOutline(true);
Fragment mapFragment =
@@ -202,7 +211,7 @@ public class MultimediaFragment extends Fragment implements AvatarPresenter {
.replace(R.id.answer_message_frag, mapFragment)
.commitNow();
}
- avatarImageView = ((ImageView) view.findViewById(R.id.answer_message_avatar));
+ avatarImageView = view.findViewById(R.id.answer_message_avatar);
if (avatarImageView != null) {
avatarImageView.setVisibility(showAvatar ? View.VISIBLE : View.GONE);
}
diff --git a/java/com/android/incallui/sessiondata/res/layout/fragment_composer_image.xml b/java/com/android/incallui/sessiondata/res/layout/fragment_composer_image.xml
index ed29e78c4..3b3327d4f 100644
--- a/java/com/android/incallui/sessiondata/res/layout/fragment_composer_image.xml
+++ b/java/com/android/incallui/sessiondata/res/layout/fragment_composer_image.xml
@@ -24,8 +24,8 @@
<ImageView
android:id="@id/answer_message_image"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
android:layout_marginTop="@dimen/answer_message_contents_margin_top"
android:layout_marginBottom="4dp"
android:layout_centerInParent="true"
@@ -34,7 +34,7 @@
android:background="@drawable/answer_data_background"
android:elevation="@dimen/answer_data_elevation"
android:adjustViewBounds="true"
- android:scaleType="fitCenter"/>
+ android:scaleType="centerCrop"/>
<ProgressBar
android:layout_width="wrap_content"