summaryrefslogtreecommitdiff
path: root/java/com/android/incallui/rtt/impl/AdvisoryViewHolder.java
diff options
context:
space:
mode:
authorwangqi <wangqi@google.com>2018-04-26 10:57:09 -0700
committerCopybara-Service <copybara-piper@google.com>2018-04-26 20:36:24 -0700
commit305f7df04262dd01c41aa3d45676d5bcb874b9a1 (patch)
tree4e83cde662ce56e2fa9cfbac24787d1f0a99202d /java/com/android/incallui/rtt/impl/AdvisoryViewHolder.java
parent52a161148b057ebd4b0c86228b82cba305f1102d (diff)
Add advisory text to RTT call about transcript storage.
Bug: 78519871 Test: RttChatFragmentTest.java PiperOrigin-RevId: 194421459 Change-Id: I4d04ee3045afdd4d5553032d7434ead280810543
Diffstat (limited to 'java/com/android/incallui/rtt/impl/AdvisoryViewHolder.java')
-rw-r--r--java/com/android/incallui/rtt/impl/AdvisoryViewHolder.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/java/com/android/incallui/rtt/impl/AdvisoryViewHolder.java b/java/com/android/incallui/rtt/impl/AdvisoryViewHolder.java
new file mode 100644
index 000000000..8f081bebf
--- /dev/null
+++ b/java/com/android/incallui/rtt/impl/AdvisoryViewHolder.java
@@ -0,0 +1,29 @@
+/*
+ * Copyright (C) 2018 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+
+package com.android.incallui.rtt.impl;
+
+import android.support.annotation.NonNull;
+import android.support.v7.widget.RecyclerView.ViewHolder;
+import android.view.View;
+
+/** ViewHolder class for RTT advisory text. */
+public class AdvisoryViewHolder extends ViewHolder {
+
+ public AdvisoryViewHolder(@NonNull View itemView) {
+ super(itemView);
+ }
+}