change width of custom view android code example
Example 1: how to set view width programmatically in android
View view = findViewById(R.id.nutrition_bar_filled);
LayoutParams layoutParams = view.getLayoutParams();
layoutParams.width = newWidth;
view.setLayoutParams(layoutParams);
Example 2: set view size android
someView.setLayoutParams(new LayoutParams(width, height));