discord-jadx/app/src/main/res/layout/view_guild_role_subscription_channel_item.xml
Juby210 02b39b5eaf
Enable replacing const values in jadx
Tracking changes should be much easier now.
2021-08-10 00:50:52 +02:00

6 lines
971 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:padding="@dimen/guild_role_subscription_setup_default_padding" android:layout_width="match_parent" android:layout_height="wrap_content">
<ImageView android:id="@+id/channel_item_type_icon" android:layout_width="wrap_content" android:layout_height="wrap_content"/>
<TextView android:textColor="?attr/colorInteractiveNormal" android:id="@+id/channel_item_name" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginLeft="8dp" android:layout_marginRight="8dp" android:layout_weight="1" style="@style/UiKit_TextView_Medium"/>
<ImageView android:id="@+id/channel_item_selected" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/ic_check_blurple" android:contentDescription="@string/select"/>
</LinearLayout>