This commit is contained in:
2025-07-24 16:09:35 +09:00
parent 193946cadf
commit dc69070823
11 changed files with 326 additions and 210 deletions
+11 -4
View File
@@ -26,21 +26,25 @@
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_margin="@dimen/_9sp"
android:padding="@dimen/_26sp"
app:layout_constraintTop_toTopOf="parent"
android:id="@+id/title"
android:gravity="center"
android:singleLine="false"
android:background="#000"
android:textSize="@dimen/_20sp"
android:textSize="@dimen/_26sp"
android:textColor="@color/white"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<TextView
android:padding="@dimen/_20sp"
app:layout_constraintTop_toBottomOf="@id/title"
android:id="@+id/date"
android:gravity="center_vertical|right"
android:singleLine="false"
android:background="#000"
android:textSize="@dimen/_20sp"
android:textSize="@dimen/_14sp"
android:textColor="@color/white"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
@@ -63,11 +67,13 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<TextView
android:padding="@dimen/_20sp"
app:layout_constraintTop_toBottomOf="@id/cover"
android:id="@+id/desc"
android:gravity="center_vertical|right"
android:singleLine="false"
android:background="#000"
android:textSize="@dimen/_20sp"
android:textSize="@dimen/_14sp"
android:textColor="@color/white"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
@@ -90,11 +96,12 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<TextView
android:padding="@dimen/_20sp"
app:layout_constraintTop_toBottomOf="@id/screen"
android:id="@+id/link"
android:singleLine="false"
android:background="#000"
android:textSize="@dimen/_20sp"
android:textSize="@dimen/_9sp"
android:textColor="@color/white"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
+14 -3
View File
@@ -3,16 +3,18 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/colorInputLayout"
android:layout_width="@dimen/oneNinetySix"
android:layout_height="wrap_content"
android:hint="inpout text"
android:orientation="horizontal"
app:boxBackgroundColor="?attr/colorSurface"
app:endIconMode="clear_text"
android:gravity="right"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
app:layout_constraintStart_toStartOf="parent">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/input"
@@ -20,6 +22,15 @@
android:layout_height="wrap_content"
android:imeOptions="actionDone"
android:inputType="text" />
<CheckBox
android:padding="0dp"
android:text="PRIVATE MODE"
android:textColor="@color/white"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
android:id="@+id/parivate_mode"
android:checked="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</com.google.android.material.textfield.TextInputLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
+1 -1
View File
@@ -27,7 +27,7 @@
<dimen name="_20sp">23sp</dimen>
<dimen name="_14sp">17sp</dimen>
<dimen name="_12sp">14sp</dimen>
<dimen name="_9sp">8sp</dimen>
<!-- toolbar height -->
<dimen name="toolbar_height">100dp</dimen>