如何使用我自己的按钮类来修复按钮的宽度

时间:2014-01-19 12:06:43

标签: android button height width drawable

我创建了一个按钮类,因为我需要按钮具有特定的高度和宽度,具体取决于屏幕尺寸; 所以这是我的代码:

import android.content.Context;
import android.util.AttributeSet;
import android.util.DisplayMetrics;
import android.util.Log;
import android.view.WindowManager;
import android.widget.Button;

public class MyButtons extends Button {

       public MyButtons(Context context, AttributeSet attrs) {
            super(context, attrs);
            DisplayMetrics displaymetrics = new DisplayMetrics();
            WindowManager windowManager = (WindowManager) context
                    .getSystemService(Context.WINDOW_SERVICE);
            windowManager.getDefaultDisplay().getMetrics(displaymetrics);
            int height = displaymetrics.heightPixels;
            int width = displaymetrics.widthPixels;

            setHeight(height/8);
            setWidth(width/6);

            Log.d("btheight",height*1/8+"");    

         }


}

在xml filde中我有

<pachagename.MyButtons
        android:id="@+id/access"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"    
       android:background="@drawable/aw"
       android:layout_marginRight="10dp" 
        />  

如何修复高度和宽度,以便它不会改变,具体取决于可绘制的大小我的意思是我需要它在mybuttons类中添加... 但是现在它仍然会根据可绘制的大小而改变,因为它是wrap_content所以我应该使用什么来告诉它采用Mybuttins类指定的宽度和高度?

我的布局是:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
   android:layout_width="match_parent"
    android:layout_height="match_parent"

    tools:context=".MainActivity"
    android:background="@drawable/app_cover"

     >

    <LinearLayout
        android:id="@+id/L1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/L2"
        android:layout_centerHorizontal="true"
        >    
      <packagename.MyButtons
        android:id="@+id/access_awkat"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"    
       android:background="@drawable/awkat"
       android:layout_marginRight="10dp" 
        />  

     <packagename.MyButtons
        android:id="@+id/access_mofadala"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"    
       android:background="@drawable/mofadala"
       android:layout_marginRight="10dp" 
        />     

     <packagename.MyButtons
        android:id="@+id/access_introduction"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"         
       android:background="@drawable/mokadima"
        />
       </LinearLayout>

 <LinearLayout
        android:id="@+id/L2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="1dp"

         >

    <packagename.MyButtons
        android:id="@+id/about_program"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/bernamej"
        android:layout_marginRight="10dp"
         />

    <packagename.MyButtons
        android:id="@+id/user_settings"
     android:layout_width="wrap_content"
        android:layout_height="wrap_content"            
       android:background="@drawable/edadat"
        android:layout_marginRight="10dp"
        />
    <packagename.MyButtons
        android:id="@+id/access_remembrances"
       android:layout_width="wrap_content"
        android:layout_height="wrap_content"        
        android:background="@drawable/azkar"

        />



    </LinearLayout>

</RelativeLayout>

1 个答案:

答案 0 :(得分:1)

您可以通过将此代码放入活动的onCreate()来设置底部LinearLayout的高度和宽度:

DisplayMetrics displaymetrics = new DisplayMetrics();
WindowManager windowManager = (WindowManager) context
                .getSystemService(Context.WINDOW_SERVICE);
windowManager.getDefaultDisplay().getMetrics(displaymetrics);
int height = displaymetrics.heightPixels;
int width = displaymetrics.widthPixels;

View view = findViewById(R.id.L2);
ViewGroup.LayoutParams params = view.getLayoutParams();
params.height = height / 8;
params.width  = width  / 6;
view.setLayoutParams(params);

确保将该布局中所有按钮的layout_height更改为“fill_parent”,然后它们应该都是屏幕高度的1/8。