文本不会在简单的Android应用程序中显示

时间:2016-03-09 21:22:04

标签: android-studio

所以我正在教自己在Android中开发。使用我从网上下载的非常简单的代码。想我会从那里建造。无论如何,文字显示在AndroidStudio" design"预习。但是在模拟器和我的实体平板电脑中,文字不会显示。

颜色值(前景和背景)显示正确。有人能告诉我我错过了什么吗?如果它现在在模拟器中显示出来的那些明目张胆的东西呢?

由于

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:weightSum="1">
    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Two buttons"
        android:padding="10dp"
        android:textColor="#FFFFFF"
        android:background="#000000"
        android:autoText="false"
        android:allowUndo="false"
        android:layout_weight=".35" />
    <Button
        android:id="@+id/buttonStart"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Start"/>
    <Button
        android:id="@+id/buttonStop"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Stop"/>
</LinearLayout>

1 个答案:

答案 0 :(得分:0)

好像没问题。您是否通过调用setContentView(R.layout。****)来加载ACTIVITY中的布局?