91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Snackbar怎么在Android中使用

發布時間:2021-03-29 15:43:11 來源:億速云 閱讀:217 作者:Leah 欄目:移動開發

本篇文章為大家展示了Snackbar怎么在Android中使用,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

要使用Snackbar,需要在項目的build.gradle中添加依賴

dependencies {
 compile 'com.android.support:design:23.4.0'
}

Snackbar的使用方法和Toast很相似

Snackbar.make(mOpenTv, "消息內容", Snackbar.LENGTH_SHORT)
  .setAction("確定", new View.OnClickListener() {
  @Override
  public void onClick(View v) {
  }
  })
  .show();

第一個參數需要傳入一個View,可以是界面當中的任意一個View控件,Snackbar會自動根據這個控件找到最外層的布局來顯示

第二個參數就是我們需要顯示的內容,注意這里的內容最多顯示兩行哦,超出兩行后的內容會變成“…”

第三個參數為Snackbar顯示的時長,有三種模式供選擇

  • LENGTH_SHORT:短時間顯示

  • LENGTH_LONG:長時間顯示

  • LENGTH_INDEFINITE:一直顯示,只有當用戶觸發Action點擊事件或手動刪除時才會消失

Snackbar可以通過setAction方法設置一個點擊事件,和用戶進行交互

我們還可以通過setCallback方法來監聽Snackbar的顯示和關閉

 Snackbar sb = Snackbar.make(mOpenTv, "消息內容", Snackbar.LENGTH_SHORT);
 sb.setCallback(new Snackbar.Callback() {
 @Override
 public void onDismissed(Snackbar snackbar, int event) {
 super.onDismissed(snackbar, event);
 // Snackbar關閉時回調
 }

 @Override
 public void onShown(Snackbar snackbar) {
 super.onShown(snackbar);
 // Snackbar打開時回調
 }
 });
 sb.show();

Snackbar還支持滑出刪除,需要在布局文件中使用CoordinatorLayout作為根布局

Snackbar怎么在Android中使用

建議要使用Snackbar的時候最好是以CoordinatorLayout作為根布局,如果以其它RelativeLayout,LinearLayout等作為根布局的話,會出現以下這種情況

Snackbar怎么在Android中使用

FloatingActionButton被遮到了,使用CoordinatorLayout作為根布局可以避免這種情況

Snackbar怎么在Android中使用

Snackbar只能在底部顯示嗎?

是也不是,為啥這么說呢,Snackbar確實是在CoordinatorLayout底部顯示的,但并不等于是在屏幕頂部

首先我們要知道Snackbar顯示的原理是什么

之前介紹中的第一個傳進去的參數View,Snackbar會通過這個View控件找到它所在的根布局,我們來查看下源碼

 public static Snackbar make(@NonNull View view, @NonNull CharSequence text,
  @Duration int duration) {
 Snackbar snackbar = new Snackbar(findSuitableParent(view));
 snackbar.setText(text);
 snackbar.setDuration(duration);
 return snackbar;
 }

我們傳進去的view會經過findSuitableParent方法的處理,我們再來看下這個方法的具體實現

 private static ViewGroup findSuitableParent(View view) {
 ViewGroup fallback = null;
 do {
  if (view instanceof CoordinatorLayout) {
  // We've found a CoordinatorLayout, use it
  return (ViewGroup) view;
  } else if (view instanceof FrameLayout) {
  if (view.getId() == android.R.id.content) {
   // If we've hit the decor content view, then we didn't find a CoL in the
   // hierarchy, so use it.
   return (ViewGroup) view;
  } else {
   // It's not the content view but we'll use it as our fallback
   fallback = (ViewGroup) view;
  }
  }

  if (view != null) {
  // Else, we will loop and crawl up the view hierarchy and try to find a parent
  final ViewParent parent = view.getParent();
  view = parent instanceof View ? (View) parent : null;
  }
 } while (view != null);

 // If we reach here then we didn't find a CoL or a suitable content view so we'll fallback
 return fallback;
 }

詳細的過程google的工程師已經寫的非常的清楚了,我們主要需要了解的就是當一個View的直接父布局為CoordinatorLayout時,就以這個CoordinatorLayout為標準來顯示Snackbar

我們可以做個小實驗驗證一下

在傳入的View控件外面套一層CoordinatorLayout

 <android.support.design.widget.CoordinatorLayout
 android:layout_width="match_parent"
 android:layout_height="100dp">

 <TextView
  android:id="@+id/tv_open_snackbar"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:gravity="center"
  android:text="打開Snackbar"
  android:textSize="28sp"/>
 </android.support.design.widget.CoordinatorLayout>

再運行一下看看,效果就變成了下面這樣

Snackbar怎么在Android中使用

所以說Snackbar的顯示位置還是可以通過這個小技巧來改變的

如果嫌默認的Snackbar太丑怎么辦?

我們可以來自定義它的外觀

1.改變按鈕的文字顏色

通過調用setActionTextColor方法即可改變按鈕的文字顏色

 Snackbar sb = Snackbar.make(mOpenTv, "消息內容", Snackbar.LENGTH_SHORT);
 sb.setAction("確定", new View.OnClickListener() {
  @Override
  public void onClick(View v) {
  }
 });
 sb.setActionTextColor(Color.YELLOW);
 sb.show();

Snackbar怎么在Android中使用

2.改變消息內容的文字顏色

Snackbar沒有給我們提供改變消息文本顏色的api接口,但在查看源碼時發現了這個方法getView

 /**
 * Returns the {@link Snackbar}'s view.
 */
 @NonNull
 public View getView() {
 return mView;
 }

這里返回的mView其實是一個SnackbarLayout布局,在SnackbarLayout的構造方法中找到了它的布局文件design_layout_snackbar_include

  // Now inflate our content. We need to do this manually rather than using an <include>
  // in the layout since older versions of the Android do not inflate includes with
  // the correct Context.
  LayoutInflater.from(context).inflate(R.layout.design_layout_snackbar_include, this);

design_layout_snackbar_include布局文件里只有兩個控件,一個TextView,一個Button

<merge xmlns:android="http://schemas.android.com/apk/res/android">

 <TextView
  android:id="@+id/snackbar_text"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_weight="1"
  android:paddingTop="@dimen/design_snackbar_padding_vertical"
  android:paddingBottom="@dimen/design_snackbar_padding_vertical"
  android:paddingLeft="@dimen/design_snackbar_padding_horizontal"
  android:paddingRight="@dimen/design_snackbar_padding_horizontal"
  android:textAppearance="@style/TextAppearance.Design.Snackbar.Message"
  android:maxLines="@integer/design_snackbar_text_max_lines"
  android:layout_gravity="center_vertical|left|start"
  android:ellipsize="end"
  android:textAlignment="viewStart"/>

 <Button
  android:id="@+id/snackbar_action"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_marginLeft="@dimen/design_snackbar_extra_spacing_horizontal"
  android:layout_marginStart="@dimen/design_snackbar_extra_spacing_horizontal"
  android:layout_gravity="center_vertical|right|end"
  android:paddingTop="@dimen/design_snackbar_padding_vertical"
  android:paddingBottom="@dimen/design_snackbar_padding_vertical"
  android:paddingLeft="@dimen/design_snackbar_padding_horizontal"
  android:paddingRight="@dimen/design_snackbar_padding_horizontal"
  android:visibility="gone"
  android:textColor="?attr/colorAccent"
  />
</merge>

相信看到這里大家應該知道怎么做了,TextView的id為snackbar_text,我們通過getView()來獲取這個TextView控件

 Snackbar sb = Snackbar.make(mOpenTv, "消息內容", Snackbar.LENGTH_SHORT);
 sb.setAction("確定", new View.OnClickListener() {
  @Override
  public void onClick(View v) {
  }
 });
 sb.setActionTextColor(Color.YELLOW);
 View view = sb.getView();
 TextView tv = (TextView) view.findViewById(R.id.snackbar_text);
 tv.setTextColor(Color.RED);
 sb.show();

Snackbar怎么在Android中使用

同樣的,我們也可以通過tv.setTextSize設置它的文字大小

3.改變消息內容的背景

同理,根據以上方法,得到它的布局,調用對應的api接口就好

  View view = sb.getView();
  view.setBackgroundColor(Color.RED);

像這種紅紅的給用戶警告的提示,是不是比Toast要來的炫酷多了呢

Snackbar怎么在Android中使用

Snackbar怎么在Android中使用

4.給消息內容添加圖標

獲取到消息內容的TextView后,調用setCompoundDrawables方法設置它的圖標,可自由選擇圖標放置的位置,四個參數分別對應TextView的左、上、右、下

  Snackbar sb = Snackbar.make(mOpenTv, "消息內容", Snackbar.LENGTH_SHORT);
  sb.setAction("確定", new View.OnClickListener() {
   @Override
   public void onClick(View v) {
   }
  });
  sb.setActionTextColor(Color.YELLOW);
  View view = sb.getView();
  TextView tv = (TextView) view.findViewById(R.id.snackbar_text);
  Drawable d = ContextCompat.getDrawable(this, R.drawable.warn);
  d.setBounds(0, 0, d.getMinimumWidth(), d.getMinimumHeight());
  tv.setCompoundDrawables(d, null, null, null); // 給TextView左邊添加圖標
  tv.setGravity(Gravity.CENTER); // 讓文字居中
  sb.show();
 }

上述內容就是Snackbar怎么在Android中使用,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

大庆市| 察哈| 佛教| 铁岭市| 玉林市| 西畴县| 旅游| 东乡族自治县| 新龙县| 济源市| 安达市| 忻州市| 双柏县| 商丘市| 聂荣县| 萝北县| 什邡市| 额尔古纳市| 禄劝| 沁水县| 南充市| 榆社县| 宿松县| 壤塘县| 金塔县| 波密县| 梓潼县| 蕉岭县| 崇左市| 濮阳市| 商城县| 高密市| 伊川县| 北宁市| 会东县| 阿城市| 房产| 揭东县| 万荣县| 耒阳市| 大安市|