簡體   English   中英

在 Android 中設置 Snackbar 的高度

[英]Set height of Snackbar in Android

我有一個 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 的高度和寬度,但這是一個混亂且耗時的時期。 關於 Snackbar 小部件的一個認識是大多數教程不討論樣式。 意見是它們應該只是小部件給你的大小而不是我的觀點。 所以我們注意到文本大小和最大行數起到了很大的作用,是一個風格良好的 Snackbar 的大小。 所以設計你的 Snackbar 和 style 好的如何實現混亂建議不要這樣做聲明這個變量,你會在你的活動中聲明任何其他變量

 RelativeLayout rl;

然后,當您需要增加 XML 文件中的 RelativeLayout 的大小但在這種情況下不是根布局時,請使用此代碼

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

當您完成這個增加的大小時,它可能會干擾根布局中其他對象的大小,您可能希望將根布局的大小設置回原來的大小。 在這種情況下,根布局設置為布局高度 615dp,我們正在使用 Nexus 7 平板電腦。 如果您還沒有注意到這一點,這里是 MESS 部分,即 1480 以像素為單位,您需要以 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>

現在對於 Rainbow 來說,管理顏色的方法有很多,這是我的。

<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>

在您聲明變量的活動中完成內務管理,添加此

    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 ===============");
        }
    };

享受代碼,如果這解決了您的問題,請通過評論告訴我們。

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();

更改Snackbar的高度或寬度非常簡單。 我們只需要編寫 2 、 3 行代碼來做到這一點。 檢查下面的代碼片段。

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();

您可能還需要設置小吃店內部容器的大小,以便文本垂直對齊/居中。 這是一個解決方案(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()
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);

LinearLayout.LayoutParams params = (LinearLayout.LayoutParams)tv.getLayoutParams();
params.height = 80;
tv.setTextColor(Color.WHITE);
tv.setGravity(Gravity.CENTER_HORIZONTAL);
tv.setLayoutParams(params);
snack.show();

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM