0

CircularFloatingActionMenu ライブラリを使用しており、このライブラリの実装は成功していますが、4 つのサブアクション ボタンのサイズを大きくしたいです。

使用しているコードの下を見つけてください

final ImageView fabIconNew = new ImageView(this);
  fabIconNew.setImageDrawable(getResources().getDrawable(R.drawable.ic_action_new));
final FloatingActionButton rightLowerButton = new FloatingActionButton.Builder(this)
        .setContentView(fabIconNew)
        .build();


SubActionButton.Builder rLSubBuilder = new SubActionButton.Builder(this);
ImageView rlIcon1 = new ImageView(this);
ImageView rlIcon2 = new ImageView(this);
ImageView rlIcon3 = new ImageView(this);
ImageView rlIcon4 = new ImageView(this);
//ImageView rlIcon6 = new ImageView(this);


rlIcon1.setImageDrawable(getResources().getDrawable(R.drawable.ic_action_contact));
rlIcon2.setImageDrawable(getResources().getDrawable(R.drawable.ic_action_currency_info));
rlIcon3.setImageDrawable(getResources().getDrawable(R.drawable.ic_action_exhibition));
rlIcon4.setImageDrawable(getResources().getDrawable(R.drawable.ic_action_faq));

画像

4

2 に答える 2

6

LayoutParamsで設定できますSubactionButton.Builder

SubActionButton.Builder rLSubBuilder = new SubActionButton.Builder(this);
LayoutParams params=new LayoutParams(200,200);
rLSubBuilder.setLayoutParams(params);
于 2015-11-02T23:03:26.677 に答える
1

ここに画像の説明を入力

LayoutParams params=new LayoutParams(80,80);
button1.setLayoutParams(params)

詳しくは [円形フローティング アクション メニュー][2]

于 2016-01-20T12:48:26.930 に答える