我已经创建了自定义视图。在我的课堂上,我创建了一个按钮:
button = new AppCompatButton(getContext());
LayoutParams button_params = new LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT);
button_params.addRule(RelativeLayout.CENTER_IN_PARENT, RelativeLayout.TRUE);
button.setLayoutParams(button_params);
button.setText(TextUtils.isEmpty(progressText) ? "Button" : progressText);
button.setGravity(Gravity.CENTER);
button.setOnClickListener(v -> {
progressBar.setVisibility(VISIBLE);
});
addView(button);
我向此按钮添加了一个可绘制对象,如下所示:
if (isDone) {
progressBar.setVisibility(GONE);
Drawable drawable = getResources().getDrawable(progressIconSuccess);
drawable.setBounds(0, 0, 100, 100);
button.setCompoundDrawables(drawable, null, null, null);
}
但是当将drawable添加到按钮时,按钮文本向右移动:
在添加可绘制对象之前:
在添加drawable之后:
我不想将按钮文本移到右边。我要保持固定,并且不要更改其位置。该怎么办?
我以这种方式使用自定义视图:
<com.tazik.progressbutton.ProgressButton
android:id="@+id/pb_button"
android:layout_width="150dp"
android:layout_height="70dp"
app:progress_height="30"
app:progress_width="30"
app:progress_text = "Register"
app:progress_iconfail="@drawable/ic_fail"
app:progress_iconSuccess="@drawable/ic_done"/>
答案 0 :(得分:0)
使用新的
MaterialIconButton
:
按钮XML代码:
<com.google.android.material.button.MaterialButton
android:id="@+id/btn"
style="@style/Widget.MaterialComponents.Button.Icon"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Icon Button"
/>
活动代码:
public class MainActivity extends AppCompatActivity {
MaterialButton iconButton;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.testing);
iconButton=findViewById(R.id.btn);
iconButton.setIcon(R.drawable.your_icon);
iconButton.setIconGravity(MaterialButton.ICON_GRAVITY_START);
}
}
答案 1 :(得分:0)
将progressBar.setVisibility(GONE)
更改为progressBar.setVisibility(INVISIBLE)
顾名思义,当您将可见性设置为GONE
时,视图“物理上”消失了-它不存在,而使用INVISIBLE
时该视图仍然存在,只是没有绘制。