我需要創建一個自定義按鈕並以編程方式添加它。
我已經找到了幾個例子,我嘗試了它們,但是當我將它添加到我的活動中時,我什麼都看不到。如何創建自定義按鈕並以編程方式添加它?
這是我的代碼:
活動:
Button btn = new Button(Einstellungen.this, null, R.attr.CustomButton);
在attrs.xml:
<resources>
<attr name="CustomButton" format="reference"/>
在styles.xml
<style name="AppTheme2" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="CustomButton">@style/someStyle</item>
</style>
<style name="someStyle">
<item name="android:layout_width">2px</item>
<item name="android:layout_height">fill_parent</item>
<item name="android:background">#000</item>
</style>
當我啓動我的應用程序時,沒有按鈕。
我該如何解決這個問題?
不要接受幫助的答案你達到解決你的問題。 –