Android按钮默认为黑色

时间:2016-08-02 15:54:22

标签: java android android-layout android-button

我以编程方式创建的按钮具有非常奇怪的行为。在一个项目中,他们是正常的灰色"他们在另一个人身上变黑了。我在两个项目中使用相同的清单。

我的activity_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="16dp"
    android:paddingLeft="16dp"
    android:paddingRight="16dp"
    android:paddingTop="16dp"
    tools:context="com.example.maris.caffeappapi.MainActivity">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/buttonlayout"
    android:orientation="vertical">

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Call Service"
        android:id="@+id/button1" />

    <TextView
        android:paddingTop="16px"
        android:id="@+id/jsonParsed"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        />

    </LinearLayout>
</RelativeLayout>

我的清单

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

<uses-permission android:name="android.permission.INTERNET"></uses-permission>

最后我用来创建按钮的代码(在onCreate方法中)

Button myButton = new Button(this.context);
myButton.setText(object.getString("name"));

LinearLayout ll = (LinearLayout)findViewById(R.id.buttonlayout);
LayoutParams lp = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);

ll.addView(myButton, lp);

这就是我在第一个项目中所获得的,

1st project

这就是我在第二个项目上的表现, 2nd project

0 个答案:

没有答案