আমি অ্যান্ড্রয়েড বিকাশে নতুন এবং আমার রৈখিক বিন্যাসে ওজন নির্ধারণ সম্পর্কে একটি প্রশ্ন রয়েছে।
আমি দুটি কাস্টম বোতাম এবং একটি কাস্টম সম্পাদনা পাঠ্য সহ একটি সারি তৈরি করার চেষ্টা করছি। সম্পাদনা পাঠ্যটি কেবলমাত্র তার সামগ্রীর মতোই জায়গা গ্রহণ করতে হবে এবং সারিতে থাকা উপলভ্য অবশিষ্ট স্থানটি পূরণ করতে দুটি বোতাম অনুভূমিকভাবে প্রসারিত হওয়া উচিত। এটার মত...
| [#Button++#] [#Button--#] [et] |
বেশ কয়েকটি চেষ্টার পরেও এটি আমার কাছে সবচেয়ে কাছের, যদিও এটি অত্যধিক জটিল বলে মনে হচ্ছে to
| [Button] [Button] [###ET###] |
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal|center_vertical"
android:layout_weight="1"
>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center_horizontal|center_vertical"
>
<RelativeLayout
android:id="@+id/btn_plus_container"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<ImageButton
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:id="@+id/btn_plus"
android:background="@drawable/btn"
android:layout_centerInParent="true"
></ImageButton>
<TextView
android:textColor="#FAFAF4"
android:id="@+id/tv_dice_plus"
android:text="@string/tv_plus"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
></TextView>
</RelativeLayout>
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center_horizontal|center_vertical"
>
<RelativeLayout
android:id="@+id/btn_minus_container"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<ImageButton
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:id="@+id/btn_minus"
android:background="@drawable/btn"
android:layout_centerInParent="true"
></ImageButton>
<TextView
android:textColor="#FAFAF4"
android:id="@+id/btn_minus"
android:text="@string/tv_minus"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
></TextView>
</RelativeLayout>
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center_horizontal|center_vertical"
>
<EditText
android:textColor="#FAFAF4"
android:text="@string/et_output"
android:id="@+id/et_output"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="number"
android:selectAllOnFocus="true"
android:minWidth="50sp"
android:maxWidth="50sp"
android:background="@drawable/tv_black_background3"
android:textColorHighlight="#c30505"
></EditText>
</LinearLayout>
</LinearLayout>
যেহেতু আমি বোতামগুলি ধারণ করে এমন লিনিয়ার বিন্যাসগুলির জন্য [অ্যান্ড্রয়েড: লেআউট_ওয়েট = "2"] সেটিংটি বুঝতে পেরেছি তারা সম্পাদনা পাঠ্যের চেয়ে আরও বেশি জায়গা নিতে পারে, তবে এটি আমার পক্ষে বিপরীত হয়, যার ফলে উভয় অর্ধেক আকার হয়ে যায়।
| [Btn] [Btn] [#####et#####] |
আমি এতগুলি বিভিন্ন সংমিশ্রণ চেষ্টা করেছি যা আমি তাদের মনে করতে পারি না এবং কোনওটিই কাজ করে না।