由于某些原因,当创建LinearLayout
带有按钮的时,最左边的按钮没有任何文本。
在布局预览中,它看起来不错。但是在实际设备上,它看起来像这样:
这是布局代码:
即使在此布局中只有一个按钮,它也不会显示文本。
这是用于使该类可用于其他布局的类:
public class HigherCounter extends LinearLayout implements View.OnClickListener{ public HigherCounter(Context context, AttributeSet attrs) { super(context, attrs); LayoutInflater inflater = LayoutInflater.from(context); inflater.inflate(R.layout.higher_counter, this); }
谢谢!
您tools:text
在前两个按钮中使用,并且该属性仅用于渲染预览屏幕。
替换为android:text
,它们将在运行时出现。