我一直在尝试使用循环以编程方式对按钮的线性布局进行充气,但它根本没有显示在ui中。但是,数组会被填充。
我的按钮xml:
<Button xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/BlackKey">
</Button>
我的风格资源:
<style name="BlackKey">
<item name="android:layout_height">0dp</item>
<item name="android:layout_width">match_parent</item>
<item name="android:layout_weight">2</item>
<item name="android:background">@color/black</item>
<item name="android:layout_margin">3dp</item>
</style>
我的初始化代码:
container = (FrameLayout) findViewById(R.id.mainframe);
public Button [] BLACKKEYS = new Button[5];
LinearLayout blackkeys = new LinearLayout(this);
blackkeys.setLayoutParams(new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
blackkeys.setOrientation(LinearLayout.HORIZONTAL);
for (int i = 0; i < 8; i++){
Button newbutton = (Button) LayoutInflater.from(this).inflate(R.layout.blackkey, blackkeys, false);
blackkeys.addView(newbutton);
BLACKKEYS[i] = newbutton;
}
container.addView(blackkeys);
答案 0 :(得分:1)
所以我继续尝试使用Android Studio提供的代码,我也收到了一个空白屏幕。我看到的主要原因是你的BlackKey风格,提供了layout_weight, layout_height 设置为0dp, layout_width 是 MATCH_PARENT ,但方向是水平 - 如果按钮出现,这将使它只显示一个按钮。
如果我理解你希望如何显示它(水平方向的五个按钮,宽度相等),就像这样:
然后您可以像这样修改BlackKey样式:
<style name="BlackKey">
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_weight">2</item>
<item name="android:background">@color/black</item>
<item name="android:layout_margin">3dp</item>
</style>
还有一个提示,如果您使用的是Android Studio,则可以先检查按钮是否显示在 设计选项卡 中,看看它是否显示正确地在屏幕上。如果它没有显示,那么尝试修改它。希望这对你有所帮助。如果您还有其他问题,或者这与您正在寻找的答案相似但尚未完成,请发表评论,我会尽力帮您解答。 :)