Return to full description Technique to create Button with own rectangle shape
1: <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
2: <item
3: android:bottom="4dp"
4: android:gravity="center">
5: <layer-list>
6: <item
7: android:gravity="center">
8: <shape android:shape="rectangle">
9: <solid android:color="@color/black" />
10: <size
11: android:width="1dp"
12: android:height="6dp" />
13: </shape>
14: </item>
15: <item
16: android:gravity="center">
17: <shape android:shape="rectangle">
18: <solid android:color="@color/black" />
19: <size
20: android:width="6dp"
21: android:height="1dp" />
22: </shape>
23: </item>
24: </layer-list>
25: </item>
26: </layer-list>
Return to full description
AndroidMosaic context:
- 2025 year: Resolve class conflicts #AndroidMosaic
- 2025 year: Application level parameters in configuration #AndroidMosaic
- 2025 year: Create test with junit and pass or dismiss test before application launch #AndroidMosaic
- 2025 year: Ask special permission and listen answer #AndroidMosaic
- 2025 year: Service lifecycle #AndroidMosaic
- 2025 year: AtomicInteger and accept service callback in UI thread, stop progressBar that was run in UiThread #AndroidMosaic
- 2025 year: Generate random data and pass it to RecyclerView with Adapter #AndroidMosaic
- 2025 year: Pass data to new form with Intent and getParcelableExtra #AndroidMosaic
- 2025 year: Access to Contact list #AndroidMosaic
- 2025 year: Using Query and Cursor to read data sequence and fill DataAdapter for RecyclerView #AndroidMosaic
- 2025 year: Custom TabSwithcer #AndroidMosaic
- 2025 year: Custom Dropdownlist with default value based on Spinner #AndroidMosaic
- 2025 year: Create MMS service and route MMS to Emulator #AndroidMosaic
- 2025 year: Vector drawable - fastest way to create icons #AndroidMosaic
- 2025 year: Technique to create Button with own rectangle shape #AndroidMosaic
- 2025 year: Simple HTTP service #AndroidMosaic
- 2025 year: Simple key-value service with Local Storage #AndroidMosaic
- 2025 year: Cryptographic local storage key-value service #AndroidMosaic
- 2025 year: WebRTC service #AndroidMosaic
- 2025 year: SIP service #AndroidMosaic
- 2025 year: Global objects with references to all application services #AndroidMosaic
Comments (
)

Link to this page:
http://www.vb-net.com/AndroidMosaic/Index15.htm
|