我需要通过此public class ExampleApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
//Use it only in debug builds
if (BuildConfig.DEBUG) {
AndroidDevMetrics.initWith(this);
}
}
}
文字而不是RadioButton
图标对齐RadioButton
下方的文字。我可以不使用硬保证金吗?
我的代码如下:
RadioButton
答案 0 :(得分:-1)
试试这个:
<RadioButton
android:id="@+id/rbtn"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="text1"/>
< TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/text1"
android:layout_below="@+id/rbtn" <!-- this here -->
android:text="@string/hello_world"/>
</RelativeLayout>
答案 1 :(得分:-1)
试试这个
<LinearLayout
android:id="@+id/llcontainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<RadioButton
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="text1"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="text2"
android:layout_marginLeft="30dp"/>
</LinearLayout>
答案 2 :(得分:-1)
试试这个
<RadioButton
android:id="@+id/Icon1"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="@android:color/transparent"
android:button="@android:color/transparent"
android:drawablePadding="-20dp"
android:drawableTop="@drawable/your_Image_Here"
android:gravity="center"
android:text="text1" />