Android: प्रोग्राम को लेआउट के आकार को कैसे सेट करें


145

एंड्रॉइड ऐप के हिस्से के रूप में मैं एक बटन सेट का निर्माण कर रहा हूं। बटन LinearLayouts के एक नेस्टेड सेट का हिस्सा हैं। वजन का उपयोग करते हुए मेरे पास स्वयं को आकार देने वाला सेट होता है, जिसमें स्वचालित रूप से मूल माता-पिता रैखिक का आकार होता है। विचार, पिक्सेल गणना और स्क्रीन के घनत्व पर आधारित है, जिसमें कई लेआउट को पिक्सेल के एक नंबर पर सेट करना है; और उस परिवर्तन के आधार पर बटन सेट का आकार अपने आप बदल जाता है।

फिर सवाल यह है: लेआउट का आकार कैसे बदलें।

मैंने कई सुझाई गई तकनीकों की कोशिश की है, और कोई भी काम करने के करीब नहीं आया है। यहाँ XML का एक सबसेट है जो बटन सेट बनाता है:

    <LinearLayout android:layout_height="104pt" android:id="@+id/numberPadLayout" android:orientation="horizontal" android:layout_width="104pt"
    android:background="#a0a0a0"
    android:layout_alignParentBottom="true" 
    android:layout_centerHorizontal="true"
>

    <LinearLayout android:layout_weight="2" android:layout_height="fill_parent" android:id="@+id/linearLayout1" android:orientation="vertical" android:layout_width="wrap_content">
        <Button android:text="1" android:id="@+id/button1" android:layout_weight="2" android:layout_width="fill_parent" android:layout_height="wrap_content"></Button>
        <Button android:text="4" android:id="@+id/button4" android:layout_weight="2" android:layout_width="fill_parent" android:layout_height="wrap_content"></Button>
        <Button android:text="7" android:id="@+id/button7" android:layout_weight="2" android:layout_width="fill_parent" android:layout_height="wrap_content"></Button>
        <Button android:text="-" android:id="@+id/buttonDash" android:layout_weight="2" android:layout_width="fill_parent" android:layout_height="wrap_content"></Button>
    </LinearLayout>
    <LinearLayout android:layout_weight="2" android:layout_height="fill_parent" android:id="@+id/linearLayout2" android:orientation="vertical" android:layout_width="wrap_content">
        <Button android:text="2" android:id="@+id/button2" android:layout_weight="2" android:layout_width="fill_parent" android:layout_height="wrap_content"></Button>
        <Button android:text="5" android:id="@+id/button5" android:layout_weight="2" android:layout_width="fill_parent" android:layout_height="wrap_content"></Button>
        <Button android:text="8" android:id="@+id/button8" android:layout_weight="2" android:layout_width="fill_parent" android:layout_height="wrap_content"></Button>
        <Button android:text="0" android:id="@+id/button0" android:layout_weight="2" android:layout_width="fill_parent" android:layout_height="wrap_content"></Button>
    </LinearLayout>

    <LinearLayout android:layout_weight="2" android:layout_height="fill_parent" android:id="@+id/linearLayout3" android:orientation="vertical" android:layout_width="wrap_content">
        <Button android:text="3" android:id="@+id/button3" android:layout_weight="2" android:layout_width="fill_parent" android:layout_height="wrap_content"></Button>
        <Button android:text="6" android:id="@+id/button6" android:layout_weight="2" android:layout_width="fill_parent" android:layout_height="wrap_content"></Button>
        <Button android:text="9" android:id="@+id/button9" android:layout_weight="2" android:layout_width="fill_parent" android:layout_height="wrap_content"></Button>
        <Button android:text="." android:id="@+id/buttonDot" android:layout_weight="2" android:layout_width="fill_parent" android:layout_height="wrap_content"></Button>
    </LinearLayout>
    <LinearLayout android:layout_weight="2" android:layout_height="fill_parent" android:id="@+id/linearLayout4" android:orientation="vertical" android:layout_width="wrap_content">
        <Button android:text="/" android:id="@+id/buttonBack" android:layout_weight="2" android:layout_width="fill_parent" android:layout_height="wrap_content"></Button>
        <Button android:text="\" android:id="@+id/buttonEnter" android:layout_weight="2" android:layout_width="fill_parent" android:layout_height="wrap_content"></Button>
    </LinearLayout>

</LinearLayout>    

दो प्रश्न इस प्रकार हैं: 1) मुझे जावा से नंबरपैड लॉयल की एक्सेस कैसे मिलेगी। और एक बार मेरे पास दृश्य तक पहुंच है, 2) मैं लेआउट की ऊंचाई और चौड़ाई कैसे बदल सकता हूं।

कोई भी सुझाव प्रशंसनीय होगा।

जवाबों:


389

जावा

यह काम करना चाहिए:

// Gets linearlayout
LinearLayout layout = findViewById(R.id.numberPadLayout);
// Gets the layout params that will allow you to resize the layout
LayoutParams params = layout.getLayoutParams();
// Changes the height and width to the specified *pixels*
params.height = 100;
params.width = 100;
layout.setLayoutParams(params);

यदि आप डिप्स को पिक्सेल में बदलना चाहते हैं, तो इसका उपयोग करें:

int height = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, <HEIGHT>, getResources().getDisplayMetrics());

Kotlin


9
धन्यवाद, ठीक वही था जिसकी मुझे जरूरत थी। मुझे लगता है कि मेरी धारणा के साथ गलत हो गया है कि मुझे मापदंडों को काम करने के लिए लेआउट पर वापस लागू करना होगा।
कोडिंगकैट

1
यदि आपको अन्य दृश्यों की गणना मूल्यों के आधार पर बदलने की आवश्यकता है, तो इसे stackoverflow.com/a/8171014/9648 के साथ मिलाएं ।
जॉनीलैमबाड़ा

1
यह काम नहीं करता। मेरी लेआउट चौड़ाई 2000 है। जब मैं प्रिंट आउट करता हूं layout.getWidth(), तो यह अभी भी 2000 है, भले ही मैंने डाल दिया होparams.width=1000

2
^ लेआउट.सेटलेयूटपराम (परम्स);
काम किया

62

मेरा नमूना कोड

wv = (WebView) findViewById(R.id.mywebview);
wv.getLayoutParams().height = LayoutParams.MATCH_PARENT; // LayoutParams: android.view.ViewGroup.LayoutParams
// wv.getLayoutParams().height = LayoutParams.WRAP_CONTENT;
wv.requestLayout();//It is necesary to refresh the screen

WebView का उपयोग करते हुए बदबू आती है जैसे कि आप इसे कॉर्डोवा ऐप्स में उपयोग करते हैं, है ना?
y_nk

1
requestLayout()मेरे लिए यह किया!
निकग्जज्र

5
LinearLayout YOUR_LinearLayout =(LinearLayout)findViewById(R.id.YOUR_LinearLayout)
    LinearLayout.LayoutParams param = new LinearLayout.LayoutParams(
                       /*width*/ ViewGroup.LayoutParams.MATCH_PARENT,
               /*height*/ 100,
               /*weight*/ 1.0f
                );
                YOUR_LinearLayout.setLayoutParams(param);

2

आप इस कोड के साथ तथाकथित लेआउट की वास्तविक ऊंचाई प्राप्त कर सकते हैं:

public int getLayoutSize() {
// Get the layout id
    final LinearLayout root = (LinearLayout) findViewById(R.id.mainroot);
    final AtomicInteger layoutHeight = new AtomicInteger();

    root.post(new Runnable() { 
    public void run() { 
        Rect rect = new Rect(); 
        Window win = getWindow();  // Get the Window
                win.getDecorView().getWindowVisibleDisplayFrame(rect);

                // Get the height of Status Bar
                int statusBarHeight = rect.top;

                // Get the height occupied by the decoration contents 
                int contentViewTop = win.findViewById(Window.ID_ANDROID_CONTENT).getTop();

                // Calculate titleBarHeight by deducting statusBarHeight from contentViewTop  
                int titleBarHeight = contentViewTop - statusBarHeight; 
                Log.i("MY", "titleHeight = " + titleBarHeight + " statusHeight = " + statusBarHeight + " contentViewTop = " + contentViewTop); 

                // By now we got the height of titleBar & statusBar
                // Now lets get the screen size
                DisplayMetrics metrics = new DisplayMetrics();
                getWindowManager().getDefaultDisplay().getMetrics(metrics);   
                int screenHeight = metrics.heightPixels;
                int screenWidth = metrics.widthPixels;
                Log.i("MY", "Actual Screen Height = " + screenHeight + " Width = " + screenWidth);   

                // Now calculate the height that our layout can be set
                // If you know that your application doesn't have statusBar added, then don't add here also. Same applies to application bar also 
                layoutHeight.set(screenHeight - (titleBarHeight + statusBarHeight));
                Log.i("MY", "Layout Height = " + layoutHeight);   

            // Lastly, set the height of the layout       
            FrameLayout.LayoutParams rootParams = (FrameLayout.LayoutParams)root.getLayoutParams();
            rootParams.height = layoutHeight.get();
            root.setLayoutParams(rootParams);
        }
    });

return layoutHeight.get();
}
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.