このようなアクティビティを作成したいと考えています。具体的には、ダイヤラー ボタンの外観をコピーしたいと考えています。
これらのボタンの xml スタイルをオンラインのどこかで見つけることができますか? それとも図書館?
ありがとう!
このようなアクティビティを作成したいと考えています。具体的には、ダイヤラー ボタンの外観をコピーしたいと考えています。
これらのボタンの xml スタイルをオンラインのどこかで見つけることができますか? それとも図書館?
ありがとう!
参考までに、必要な 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>