mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-31 06:17:57 +01:00 
			
		
		
		
	Replace AboutLibraries activity with custom controller
This commit is contained in:
		
							
								
								
									
										7
									
								
								app/src/main/res/layout/licenses_controller.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								app/src/main/res/layout/licenses_controller.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,7 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <androidx.recyclerview.widget.RecyclerView xmlns:android="http://schemas.android.com/apk/res/android" | ||||
|     xmlns:tools="http://schemas.android.com/tools" | ||||
|     android:id="@+id/recycler" | ||||
|     android:layout_width="match_parent" | ||||
|     android:layout_height="wrap_content" | ||||
|     tools:listitem="@layout/licenses_item" /> | ||||
							
								
								
									
										30
									
								
								app/src/main/res/layout/licenses_item.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										30
									
								
								app/src/main/res/layout/licenses_item.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,30 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||||
|     xmlns:tools="http://schemas.android.com/tools" | ||||
|     android:layout_width="match_parent" | ||||
|     android:layout_height="wrap_content" | ||||
|     android:background="@drawable/list_item_selector_background" | ||||
|     android:paddingHorizontal="16dp" | ||||
|     android:paddingVertical="8dp" | ||||
|     android:orientation="vertical"> | ||||
|  | ||||
|     <TextView | ||||
|         android:id="@+id/name" | ||||
|         style="@style/TextAppearance.Regular.Body1" | ||||
|         android:layout_width="match_parent" | ||||
|         android:layout_height="wrap_content" | ||||
|         tools:text="Library name" /> | ||||
|  | ||||
|     <TextView | ||||
|         android:id="@+id/artifact_id" | ||||
|         android:layout_width="match_parent" | ||||
|         android:layout_height="wrap_content" | ||||
|         tools:text="artifact:id:1.0" /> | ||||
|  | ||||
|     <TextView | ||||
|         android:id="@+id/license" | ||||
|         android:layout_width="match_parent" | ||||
|         android:layout_height="wrap_content" | ||||
|         tools:text="Apache Version 2.0" /> | ||||
|  | ||||
| </LinearLayout> | ||||
| @@ -6,8 +6,7 @@ | ||||
|     android:layout_height="56dp" | ||||
|     android:layout_gravity="center_vertical" | ||||
|     android:background="@drawable/list_item_selector_background" | ||||
|     android:paddingStart="8dp" | ||||
|     android:paddingEnd="8dp"> | ||||
|     android:paddingHorizontal="8dp"> | ||||
|  | ||||
|     <ImageView | ||||
|         android:id="@+id/thumbnail" | ||||
|   | ||||
		Reference in New Issue
	
	Block a user