Android에서 화면 하단에 토스트 메시지를 표시하고 싶습니다.
Toast.makeText(test.this,"bbb", Toast.LENGTH_LONG).show();
작동하지 않습니다. 어떻게 올바르게 수행합니까?
Android에서 화면 하단에 토스트 메시지를 표시하고 싶습니다.
Toast.makeText(test.this,"bbb", Toast.LENGTH_LONG).show();
작동하지 않습니다. 어떻게 올바르게 수행합니까?
답변:
토스트 배치
표준 알림 메시지가 화면 하단에 가로 중앙에 표시됩니다. setGravity(int, int, int)
방법 으로이 위치를 변경할 수 있습니다 . 여기에는 Gravity
상수, x-position
오프셋 및 오프셋의 세 가지 매개 변수가 허용 y-position
됩니다.
예를 들어, 토스트가 왼쪽 상단 모서리에 나타나도록 결정한 경우 다음과 같이 중력을 설정할 수 있습니다.
toast.setGravity(Gravity.TOP|Gravity.LEFT, 0, 0);
위치를 오른쪽으로 조금 이동하려면 두 번째 매개 변수의 값을 늘립니다. 아래로 조금씩 이동하려면 마지막 매개 변수의 값을 늘립니다.
사용자 지정 알림을위한 레이아웃 파일
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_marginRight="5dp" />
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:textColor="#000" />
버튼의 클릭 이벤트에 대한 사용자 정의 토스트를위한 .java 파일
public class MainActivity extends Activity {
private Button button;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
button = (Button) findViewById(R.id.buttonToast);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
// get your custom_toast.xml ayout
LayoutInflater inflater = getLayoutInflater();
View layout = inflater.inflate(R.layout.custom_toast,
(ViewGroup) findViewById(R.id.custom_toast_layout_id));
// set a dummy image
ImageView image = (ImageView) layout.findViewById(R.id.image);
image.setImageResource(R.drawable.ic_launcher);
// set a message
TextView text = (TextView) layout.findViewById(R.id.text);
text.setText("Button is clicked!");
// Toast...
Toast toast = new Toast(getApplicationContext());
toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0);
toast.setDuration(Toast.LENGTH_LONG);
toast.setView(layout);
toast.show();
}
});
}
}
콜틴의 중앙 (가로)에서 텍스트 중력 표시 / 설정
fun Context.longToast(msg: String) {
Toast.makeText(this, msg, Toast.LENGTH_LONG)
.apply {
view.findViewById<TextView>(android.R.id.message)?.gravity = Gravity.CENTER
}
.show()
}