1

このようなアクティビティを作成したいと考えています。具体的には、ダイヤラー ボタンの外観をコピーしたいと考えています。

これらのボタンの xml スタイルをオンラインのどこかで見つけることができますか? それとも図書館?

ここに画像の説明を入力

ありがとう!

4

1 に答える 1

2

参考までに、必要な XML は次のとおりです: Git: Android Open Source Project

また、XML を掘り下げると、数字で使用されるリソースを見つけることができます。

<TableRow
     android:layout_height="0px"
     android:layout_weight="1">
    <com.android.dialer.dialpad.DialpadImageButton
        android:id="@+id/one" style="@style/DialtactsDialpadButtonStyle"
        android:src="@drawable/dial_num_1_wht"
        android:contentDescription="@string/description_image_button_one" />
    <com.android.dialer.dialpad.DialpadImageButton
        android:id="@+id/two" style="@style/DialtactsDialpadButtonStyle"
        android:src="@drawable/dial_num_2_wht"
        android:contentDescription="@string/description_image_button_two" />
    <com.android.dialer.dialpad.DialpadImageButton
        android:id="@+id/three" style="@style/DialtactsDialpadButtonStyle"
        android:src="@drawable/dial_num_3_wht"
        android:contentDescription="@string/description_image_button_three" />
</TableRow>
于 2013-08-13T11:40:45.530 に答える