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?
Thanks!
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?
Thanks!
仅供参考,这是您需要的 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>