1

I want to make an activity that looks like this, more specifically I want to copy the look of the dialer buttons.

Can I find the xml styles for these buttons somewhere online? Or even better, a library?

enter image description here

Thanks!

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 回答