【问题标题】:Set height of Snackbar in Android在 Android 中设置 Snackbar 的高度
【发布时间】:2017-10-31 11:50:44
【问题描述】:

我有一个 Snackbar 需要设置它的高度或设置高度来包装内容。有什么办法吗?

Snackbar snack = Snackbar.make(findViewById(R.id.activity_container), "Message", Snackbar.LENGTH_SHORT);

View view = snack.getView();
TextView tv = (TextView) view.findViewById(android.support.design.R.id.snackbar_text);
view.setBackgroundColor(Color.RED);
tv.setTextColor(Color.WHITE);
tv.setTextAlignment(View.TEXT_ALIGNMENT_CENTER);
tv.setGravity(Gravity.CENTER_HORIZONTAL);

【问题讨论】:

  • 你能通过扩展来创建一个自定义的 SnackBar 吗?
  • 不知道怎么弄
  • 你能帮帮我吗
  • [您可以通过提供填充或边距值来检查此页面。 ](stackoverflow.com/questions/33544931/…)
  • @Ekrem 不确定 getHeight 将提供什么价值,但请参阅我的答案

标签: java android android-snackbar


【解决方案1】:

我们将提供多个答案。首先声明一两个!您可以设置 Snackbar 的高度和宽度,但这很麻烦且耗时。 关于 Snackbar 小部件的一种认识是大多数教程不讨论样式。意见是它们应该只是小部件给您的大小,而不是我的视图。所以我们注意到,文本大小和最大行数是一个大滚动的大小是一个样式良好的 Snackbar 的大小。所以设计你的小吃店和风格 好的如何实现混乱建议不要这样做声明这个变量,你会在你的活动中声明任何其他变量

 RelativeLayout rl;

然后,当您需要增加 XML 文件中的 RelativeLayout 的大小但在这种情况下不是根布局时,请使用此代码

    rl = (RelativeLayout) findViewById(R.id.svRL);
    rl.getLayoutParams().height = 1480;

当你完成这个增加的尺寸时,它可能会弄乱根布局中其他对象的大小,你可能希望将根布局的大小设置回原来的大小。在这种情况下,根布局设置为布局高度 615dp,我们正在使用 Nexus 7 平板电脑。如果您还没有注意到这一点,这里是 1480 以像素为单位的 MESS 部分,您需要在 dp 中使用它。我确信可以进行转换,只是不要问我。所以这里是回退的代码行

 rl.getLayoutParams().height = 1230;

现在提供一种简单的方法来设计和设计两种类型的 Snackbar,一种带有操作按钮,另一种没有。首先,您需要一个 CoordinatorLayout 在任何 Activity 对应的 XML 文件中,看起来像这样 注意它有一个 id

        <android.support.design.widget.CoordinatorLayout
        android:id="@+id/coorSB"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true" >
        <!-- android.support.design.widget.SnackBar -->

        <!--stuff you want inside the coordinator ... -->
    </android.support.design.widget.CoordinatorLayout>

现在我们准备在 Activity 中做一些工作来设计和设置一些高级的字符串和颜色之后的样式。请不要生气,因为您似乎对编程很陌生。

    <string name="snackbar_text">I Am a NEW SnackBAR TEXT</string>
<string name="snackbar_action">EXIT</string>
<string name="second_text">Second Text</string>
<string name="csb_text">I am the Custom Guy</string>
<string name="csb_action">EXIT</string>
<string name="the_text">Password must have one Numeric Value\n"
"One Upper &amp; Lower Case Letters\n"
"One Special Character $ @ ! % * ? &amp;\n"
"NO Spaces in the PASSWORD"</string>

现在彩虹有很多管理颜色的方法,这是我的。

<resources>
<color name="colorPrimary">#3F51B5</color>
<color name="colorPrimaryDark">#303f9f</color>
<color name="colorAccent">#FF4081</color>
<color name="color_Black">#000000</color>
<color name="color_White">#FFFFFF</color>
<color name="color_darkGray">#606060</color>
<color name="color_lightGray">#C0C0C0</color>
<color name="color_super_lightGray">#E0E0E0</color>
<color name="color_Red">#FF0000</color>
<color name="color_Yellow">#FFFF66</color>
<color name="color_deepBlue">#0000ff</color>
<color name="color_lightBlue">#3333FF</color>
<color name="color_Purple">#9C27B0</color>
<color name="color_Transparent">@android:color/transparent</color>

在您声明变量的 Activity 中完成家务,添加此

    private CoordinatorLayout myLayout;
Snackbar sb = null;

private CoordinatorLayout noActLayout;
Snackbar sbNoAct = null;

这里有两种Snackbars的实现

    public void makeNoAct(View view){
        // this is declared on a Button android:onClick="makeNoAct"
    noActLayout = (CoordinatorLayout)findViewById(R.id.coorSB);

    sbNoAct = Snackbar.make(noActLayout,R.string.the_text,1);// any interger will make it happy
            sbNoAct.setDuration(3000);// 3 sec               // OR Snackbar.LENGTH_LONG
                                                             // matters NOT you are setting duration
    View sbView = sbNoAct.getView();
    sbView.setBackgroundColor(ContextCompat.getColor(this, R.color.color_Black));
    TextView textViewNoAct = (TextView) sbView.findViewById(android.support.design.R.id.snackbar_text);
    //set text color
    textViewNoAct.setTextColor(ContextCompat.getColor(this,R.color.color_Yellow));
    textViewNoAct.setMaxLines(10);
    textViewNoAct.setTextSize(24);
    //increase max lines of text in snackbar. default is 2.
    sbNoAct.show();

    int height = sbView.getHeight();
    etNewData.setText(String.valueOf(height));

}

public void makeCOOR(View view) {
    // this is declared on a Button android:onClick="makeCOOR"
    // We were to Lazy to write an OnClickListener
    myLayout = (CoordinatorLayout) findViewById(R.id.coorSB);

    sb = Snackbar.make(myLayout, R.string.csb_text, Snackbar.LENGTH_INDEFINITE)
            .setAction(R.string.csb_action, myOnClickListener)
            .setActionTextColor(ContextCompat.getColor(context, R.color.color_Red));

    View sbView = sb.getView();
    sbView.setBackgroundColor(ContextCompat.getColor(this, R.color.color_White));
    TextView textView = (TextView) sbView.findViewById(android.support.design.R.id.snackbar_text);
    //set text color
    textView.setTextColor(ContextCompat.getColor(this,R.color.color_deepBlue));
    textView.setTextSize(30);
    //increase max lines of text in snackbar. default is 2.
    textView.setMaxLines(10);
    // NOTE new View
    TextView textAction = (TextView) sbView.findViewById(android.support.design.R.id.snackbar_action);
    //set Action text color
    textAction.setTextColor(ContextCompat.getColor(this,R.color.color_Red));
    textAction.setTextSize(30);
            sb.show();
    }

    View.OnClickListener myOnClickListener = new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            // OR use and Intent to go somewhere have a nice trip
            sb.dismiss();
            System.out.println("========= I WAS DISMISSED ===============");
        }
    };

享受代码,如果这能解决您的问题,请通过评论告诉我们。

【讨论】:

    【解决方案2】:
    final String CR= System.getProperty("line.separator") ;
    String snackMsg= "First line" + CR;
       snackMsg+="Second line." +CR;
       snackMsg+="... more lines." +CR;
    
    final Snackbar snack = Snackbar.make(findViewById(android.R.id.content),  snackMsg, Snackbar.LENGTH_INDEFINITE);
    
    snack.setAction("OK", new View.OnClickListener() {
                        @Override
                        public void onClick(View v) {
                            // Respond to the click, such as by undoing the modification that caused
                            // this message to be displayed
                        }
                    });
    
    View view = snack.getView();
    
    TextView tv = (TextView) view.findViewById(android.support.design.R.id.snackbar_text);
    
    // tv.setBackgroundColor(Color.RED);
    tv.setLines(12);
    
    FrameLayout.LayoutParams params =(FrameLayout.LayoutParams)view.getLayoutParams();
    params.gravity = Gravity.TOP;
    //params.height=2000;
    params.bottomMargin=10;
    view.setLayoutParams(params);
    
    snack.show();
    

    【讨论】:

      【解决方案3】:

      更改Snackbar 的高度或宽度非常简单。 只是我们需要编写 2 、 3 行代码来做到这一点。 检查下面的代码 sn -p 。

      Snackbar snackbar =   Snackbar.make(view, "Your message", Snackbar.LENGTH_LONG);
              snackbar.setAction("Ok", new View.OnClickListener() {
                          @Override
                          public void onClick(View view) {
                              //your click action.
                          }
                      });
      
              Snackbar.SnackbarLayout layout = (Snackbar.SnackbarLayout)snackbar.getView();
              layout.setMinimumHeight(50);//your custom height.
              snackbar.show();
      

      【讨论】:

        【解决方案4】:

        您可能还需要设置小吃店内部容器的大小,以使文本垂直对齐/居中。这是一个解决方案(Kotlin):

        Snackbar.make( containerView, msg, duration ).also {
                    // outer container
                    it.view.minimumHeight = minHeightPx
        
                    // inner container
                    ( it.view as? Snackbar.SnackbarLayout )?.getChildAt( 0 )?.let { innerView ->
                        innerView.minimumHeight = minHeightPx
                    }
                }.show()
        

        【讨论】:

          猜你喜欢
          • 2023-02-09
          • 2021-11-29
          • 2013-11-28
          • 2018-09-14
          • 1970-01-01
          • 2016-01-18
          • 2017-07-08
          • 2017-05-09
          • 1970-01-01
          相关资源
          最近更新 更多