0

私のタブ付き Android アプリケーションでは、TabActivity を拡張し、タブにはさまざまなアクティビティがあり、作成時に次のように setContentView(int) でコンテンツを設定します。

アラーム.java

public class Alarm extends Activity implements OnClickListener {

    @Override
    public void onCreate(Bundle bundle) {
        super.onCreate(bundle);
        setContentView(R.layout.alarm);
        // ...
    }
}

アラーム.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@color/trans_white" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:gravity="center"
        android:text="example text"
        android:textColor="@color/black"
        android:textSize="17sp" />

    <TimePicker
        android:id="@+id/alarmTimePicker"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/textView1"
        android:layout_centerHorizontal="true"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginTop="32dp"
        android:background="@color/black"
        android:paddingBottom="10dp"
        android:paddingLeft="10dp"
        android:paddingRight="10dp"
        android:paddingTop="10dp" />

    <TextView
        android:id="@+id/alarmActiveTV"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/alarmTimePicker"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="42dp"
        android:text="@string/replacement_txt"
        android:textSize="18sp" />

    <Button
        android:id="@+id/alarm_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="50dp"
        android:gravity="bottom"
        android:onClick="showTimePickerDialog"
        android:text="@string/set_alarm_btn_txt"
        android:textSize="20sp" />

</RelativeLayout>

これにより、見栄えの良い TimePicker が生まれました 新しいタイムピッカー

しかし、その後、TabActivity が非推奨になり、FragmentActivity を拡張するように変更され、タブがアクティビティではなく Fragment を拡張するように変更されたことに気付きました。

アラーム.java

public class Alarm extends Fragment implements OnClickListener {

    @Override
    public View onCreateView(LayoutInflater inflater, 
        ViewGroup container, Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        if (container == null) {
            return null;
        }
        return (RelativeLayout)inflater.inflate(R.layout.alarm, container, false);
}

この新しい構造で、レイアウトを膨らませます。

これにより、外観が古い TimePicker の外観に変更されました。

オールドタイムピッカー

これにより TimePicker のスタイルが変更されるのはなぜですか? この新しい FragmentActivity で新しい TimePicker を取得するにはどうすればよいですか?

v4 サポート ライブラリをインポートして、古い SDK:s をサポートします。minSDK は 8 です。ターゲットは 17 です。(minSDK を 16 に変更しても効果はありません)

4

1 に答える 1

2

ContextThemeWrapperを使用する場合(または使用しない場合)、xml のスタイルの問題である可能性があります

ContextThemeWrapper l_contextThemeWrapper = new ContextThemeWrapper(this, R.style.myStyle);

親スタイルを使用しない

<style name="myStyle">
...
</style>
于 2013-11-18T17:57:16.530 に答える