我已将Theme.AppCompat.Light应用于我的应用。除了数字选择器(包括日期/时间选择器)之外,所有UI组件都以灯光主题显示。结果如下。 axml代码也在下面。如何使用浅色主题获得数字选择器。
CREATE TABLE TestData ( id1 int, id2 int, id3 int, id4 String) ROW FORMAT DELIMITED FIELDS TERMINATED BY ‘,’ stored as textfile;
答案 0 :(得分:0)
替换Theme.AppCompat.Light
代替Theme.Holo.Light
<application android:allowBackup="true" android:icon="@mipmap/icon" android:label="@string/app_name" android:theme="@style/Theme.AppCompat.Light"></application>
Theme.AppCompat.Light
:[Activity(Label = "AppCompatLight", MainLauncher = true, Icon = "@mipmap/icon", Theme = "@style/Theme.AppCompat.Light")]
public class MainActivity : ActionBarActivity
Theme.Holo.Light
:[Activity(Label = "ThemeLight", MainLauncher = true, Icon = "@mipmap/icon", Theme = "@android:style/Theme.Holo.Light")]
申请级别Theme.Holo.Light
:
<application android:allowBackup="true" android:icon="@mipmap/icon" android:label="@string/app_name" android:theme="@android:style/Theme.Holo.Light"></application>