Xamarin - 未在设备上应用的样式

时间:2016-11-15 18:15:36

标签: xamarin xamarin.android

如果这看起来很模糊,我很抱歉,但我不确定如何说出来。 未使用适用于Android的Xamarin环境的样式(Visual Studio 2015)尚未应用于我的Samsung设备(Android 4.1.2),如下所示: enter image description here

我的axml文件的结构:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:minWidth="25px"
    android:minHeight="25px"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@+id/linearLayout1"
    android:weightSum="100"
    android:background="#FFF">
    <ImageView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/imageView1"
        android:paddingTop="50dp"
        android:background="#FFFFFF" />
    <CheckBox
        android:text="CheckBox"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/checkBox1"
        android:textColor="#000"
        android:checked="true"
        style="@android:style/Widget.CompoundButton.CheckBox" />
    <Button
        android:text="Button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/button1" />
    <RadioButton
        android:text="RadioButton"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/radioButton1" />
    <ToggleButton
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/toggleButton1" />
</LinearLayout>

在Xamarin中,我正在使用Android版本4.1.2(V16)的“Dialog Alert”主题。我哪里可能出错或留下待定的东西?如果缩进不正确,我会道歉,因为我还在学习。

0 个答案:

没有答案